I conducted a search but could not find this specific topic, so please forgive if I am repeating an existing question. Hopefully the subject line is incrementally more search optimized.
BACKGROUND
I am using IF/THEN formulas in my '% Complete' column to auto-populate a Progress Bar that goes into my status reports as a visual element.
The formulas that I have attempted are as follows:
- =IF([% Complete]31 = 1, "Full", IF([% Complete]31 < 0.25, "Empty", IF([% Complete]31 = 0.2 - 0.49, "Quarter", IF([% Complete]31 = 0.5 - 0.69, "Half", IF([% Complete]31 = 0.7 - 0.99, "Three Quarter")))))
- =IF([% Complete]1 = 1, "Full", IF([% Complete]1 < 0.25, "Empty", IF([% Complete]1 >= 0.75, "Three Quarter", IF([% Complete]1 >= 0.5, "Half", IF([% Complete]1 >= 0.25, "Quarter")))))
The formula below is what I am currently using. It is the same as #2 above, just in reverse order.
=IF([% Complete]1 = 1, "Full", IF([% Complete]1 < 0.25, "Empty", IF([% Complete]1 >= 0.25, "Quarter", IF([% Complete]1 >= 0.5, "Half", IF([% Complete]1 >= 0.75, "Three Quarter")))))
PROBLEM
Inconsistent value returns based on the same formula in different rows (see Capture2.png)
The correct value in % Complete does not appear to register in the formula (see Capture.png)
SEEKING
A formula solution that auto-populates the progress bar based on the % Complete system row.
< 25% is Empty
26% - 49% is Quarter
50% - 74% is Half
75% - 99% is Three Quarter
100% is Full
Any help or advice would be appreciated. Thanks!
Evan

