There is a SWITCH() function for simplifying nested IF functions. Unfortunately I don’t think it can check for equivalencies such as greater or less thans yet, so the above nested IF() is the best solution.
I want to display message based on Blood Sugar level but in the below expression few if conditions are not executing. please correct me if I am doing mistake
IFS(
([Blood Sugar] <= 130),
(“Normal”),
([Blood Sugar] > 130),
(“Low Risk”),
([Blood Sugar] > 175),
(“Level 1”),
([Blood Sugar] > 299),
(“Level 2”),
([Blood Sugar] > 400),
(“Level 3”),
TRUE,
[Blood Sugar]
)