Is there a mechanism in the formula to hide the progress bar symbol when the row should not contain a progress bar (i.e. work may not apply)?
I have the following formula that works fine, but if an item is out of scope, I don't want there to be a progress bar shown at all.
=IF([AMS Complete]3 = 0, "Empty", IF([AMS Complete]3 = .25, "Quarter", IF([AMS Complete]3 = .50, "Half", IF([AMS Complete]3 = .75, "Three Quarter", IF([AMS Complete]3 = 1, "Full", IF(AND(ISBLANK([AMS Complete]3),ISBLANK([In Scope?]3),"","Empty"))))))