Error with RAG Formula
Can someone help me with a formula which is displaying error. What am I doing wrong? I need the bubble symbol to display "Red" if the PH is greater than a certain range, Green if its within the specified range and 'Yellow; if below a certain range . The range is as follow for the PH 7.620-7.720. The formula I created is as follows but its not working:
What am I doing wrong? Any help
Best Answer
-
Hey @Vinton Douglas
A comma was missing.
Try this
=IFERROR(IF(PH@row="", "", IF(AND(PH@row>=7.620, PH@row<=7.720), "Green", IF(PH@row>7.720, "Red", "Yellow"))),"")
Answers
-
Hey @Vinton Douglas
A comma was missing.
Try this
=IFERROR(IF(PH@row="", "", IF(AND(PH@row>=7.620, PH@row<=7.720), "Green", IF(PH@row>7.720, "Red", "Yellow"))),"")
-
Thank you very much! It works
Help Article Resources
Categories
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!