I have sheet with a few columns, two of which are:
- symbol column with the status bar
- a % complete field
I want a formula in the status bar which auto picks (i.e. column formula) based on the % in the second column.
so i have this formula in column 1:
=IF([% Complete]@row <>" ", if([% Complete]@row=0, "Empty", if(and([% Complete]@row >0, [% Complete]@row <= .25), "Quarter", if(and([% Complete]@row >.25, [% Complete]@row <=.5), "Half", if(and([% Complete]@row >.5, [% Complete]@row <=.75), "Three Quarter"', if([% Complete]@row=1, "Full"))))))
if the % Complete column is blank, then i don't want it to evaluate the formula, hence the first IF.
I get an error saying this formula is unpareseable.
Anyone know why?