avgif() (aggregation function)

Learn how to use the avgif() function to return the average value of an expression where the predicate evaluates to true.

Calculates the average of expr in records for which predicate evaluates to true.

Syntax

avgif (expr, predicate)

Parameters

NameTypeRequiredDescription
exprstring✔️The expression used for aggregation calculation. Records with null values are ignored and not included in the calculation.
predicatestring✔️The predicate that if true, the expr calculated value is added to the average.

Returns

Returns the average value of expr in records where predicate evaluates to true.

Example

The following example calculates the average damage by state in cases where there was any damage.

StormEvents
| summarize Averagedamage=tolong(avg( DamageCrops)),AverageWhenDamage=tolong(avgif(DamageCrops,DamageCrops >0)) by State

Output

The results table shown includes only the first 10 rows.

StateAveragedamageAveragewhendamage
TEXAS7524491291
KANSAS15366695021
IOWA433228203
ILLINOIS445682574757
MISSOURI3407198806281
GEORGIA49070257239005
MINNESOTA2835144175
WISCONSIN17764438188
NEBRASKA21366187726
NEW YORK510000