Hello - I am trying to create a formula using "Less Than", Greater Than", and "Less than or Equal" to symbols to evaluate a Score column and in the Severity Column set the Severity to Low, Medium, or High dependent on the score in the Score column.
Above is what I am trying to recreate in the formula. I started off using =IF(AND but perhaps I should use =IF(OR
This is the formula as I currently have it. It comes back as unparseable.
=IF(AND([Impact x Probability Score]@row ≤ "5"), Low, IF(AND([Impact x Probability Score]@row > "5" ≤ "15"), Medium, IF(AND([Impact x Probability Score]@row ≥ "15"), High)))