Hi there,
I'm writing a formula to translate a %complete Column into the progress bar. So far I have teh formula outlined as:
=IF([% Complete]@row = 0, "Empty", IF(AND([% Complete]@row > 0.01, [% Complete]@row < 0.25), "Quarter", IF(AND([% Complete]@row > 0.26, [% Complete]@row < 0.5), "Half", IF(AND([% Complete]@row > 0.51, [% Complete]@row < 0.75, "Three Quarter", IF(AND([% Complete]@row > 0.76, [% Complete]@row < 1), "Full"))))))
HOWEVER, it works for everything EXCEPT the last IF statement. I'm getting #IncorrectArgument for anything over 50%. I need another set of eyes to trouble shoot why it's breaking for the last 3 but working fine for the first few.