Hi team - I'm trying to create a nested IF statement that shows the following in the Status column:
- Green status is Total score 450 or above
- Yellow status is Total score between 449-350
- Red status is Total score between 349-1
- Gray status is Total score of 0
The Total score column is a formula that sums up specific columns to the left on the sheet.
The formula I'm experimenting with that doesn't appear to work as needed (although it doesn't error out):
=IF([Total score]@row >= "450", "Green", IF([Total score]@row <= "449", "Yellow", IF([Total score]@row <= "350", "Red", "Gray")))
What am I missing?
Thanks,
Jeff