I have a simple GI showing production orders and all I want to do is add some color to it based on the status.
This formula is currently not coloring anything and I tried a couple other ways too, the system seems to not recognize the Status ID as the actual words that I have in my condition.
Here is my formula:
=IIf( [AMProdItem.StatusID] = 'Released', 'green20',
IIf( [AMProdItem.StatusID] = 'In Process', 'blue20',
IIf( [AMProdItem.StatusID] = 'On Hold', 'yellow20',
IIf( [AMProdItem.StatusID] = 'Completed', 'green', 'default' ))))
Can a second pair of eyes show me what is wrong with this?

