Add condition to a particular if-then-else

I want add an extra condition to if-then-else.
if A ≥ B and B ≤ C then 2

I can’t seem to able to add condition to a particular if case

You have to think it in reverse a bit with Glide’s If-Then-Else.

If A < B then something
If B > C then something

Else 2.

If you have more conditions than that, please let us know.

I should add
Case 1
if A ≥ B and B ≤ C then 2

Case 2
if A ≥ B then 1

Else 0

  • If A < B, then 0
  • If B > C, then 1
  • Else 2
1 Like