case()

Learn how to use the case() function to evaluate a list of predicates and return the first expression for which the predicate evaluates to true.

Evaluates a list of predicates and returns the first result expression whose predicate is satisfied.

If none of the predicates return true, the result of the else expression is returned. All predicate arguments must be expressions that evaluate to a boolean value. All then arguments and the else argument must be of the same type.

Syntax

case(predicate_1, then_1, [predicate_2, then_2, …] else)

Parameters

NameTypeRequiredDescription
predicatestring✔️An expression that evaluates to a boolean value.
thenstring✔️An expression that gets evaluated and its value is returned from the function if predicate is the first predicate that evaluates to true.
elsestring✔️An expression that gets evaluated and its value is returned from the function if neither of the predicate_i evaluate to true.

Returns

The value of the first then_i whose predicate_i evaluates to true, or the value of else if neither of the predicates are satisfied.

Example

range Size from 1 to 15 step 2
| extend bucket = case(Size <= 3, "Small", 
                       Size <= 10, "Medium", 
                       "Large")

Output

Sizebucket
1Small
3Small
5Medium
7Medium
9Medium
11Large
13Large
15Large