Forum Discussion
Calculated field based off number range in other column
- Jun 24, 2022
christopherturner87 Did you try formula given in my answer above?
If it is not working for you, try this:
=IF([Risk Rating]<29,"Low Risk",IF(AND([Risk Rating]>30,[Risk Rating]<59),"Medium Risk",IF([Risk Rating]>60,"High Risk", "")))
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.
ganeshsanap so when i do the first two it works but when i try to add in the 3rd set for the high risk i get this error: The formula contains a syntax error or is not supported.
I found another example that is more of what i am looking for because i need a low, medium and high risk so the medium needs to be a range between 30-59.
Here is the formula that I found
=IF([Risk Rating]<29,"Low Risk",IF(AND[Risk Rating]>30, [Risk Rating]<59,"Medium Risk",IF([Risk Rating]>60,"High Risk")))
Any ideas?
christopherturner87 Did you try formula given in my answer above?
If it is not working for you, try this:
=IF([Risk Rating]<29,"Low Risk",IF(AND([Risk Rating]>30,[Risk Rating]<59),"Medium Risk",IF([Risk Rating]>60,"High Risk", "")))
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.
- christopherturner87Jun 24, 2022Copper ContributorThe first equation worked to get me the Low & Medium but not the high but this formula did exactly what i was looking for. Thank you for your help!