Condition for FAIL, APPROVE and EXCELLENT

I think I am complicating myself with something simple, I want to achieve that if the result is <=10 it must be FAIL if it is within 11 to 20 it must be APPROVED but if it is => 21 it must say EXCELLENT

This expression works for me but only with one condition... IF([RESULT] =< 10,"FAIL","APPROVED") 😬

in excel I used to do but I'm starting with APPSHEET and I don't get the result I want.

could you give me a hand please?

Thank you very much for your unconditional help.

Solved Solved
0 2 88
1 ACCEPTED SOLUTION

One way to do this

IFS(
 [r] <= 10, "FAIL",
 21  <= [r], "EXCELLENT",
 TRUE, "APPROVED"
)

 

View solution in original post

2 REPLIES 2

One way to do this

IFS(
 [r] <= 10, "FAIL",
 21  <= [r], "EXCELLENT",
 TRUE, "APPROVED"
)

 

Steve
Platinum 4
Platinum 4
Top Labels in this Space