avg() (aggregation function)

Learn how to use the avg() function to calculate the average value of an expression.

Calculates the average (arithmetic mean) of expr across the group.

Syntax

avg(expr)

Parameters

NameTypeRequiredDescription
exprstring✔️The expression used for aggregation calculation. Records with null values are ignored and not included in the calculation.

Returns

Returns the average value of expr across the group.

Example

The following example returns the average number of damaged crops per state.

StormEvents
| summarize AvgDamageToCrops = avg(DamageCrops) by State

The results table shown includes only the first 10 rows.

StateAvgDamageToCrops
TEXAS7524.569241
KANSAS15366.86671
IOWA4332.477535
ILLINOIS44568.00198
MISSOURI340719.2212
GEORGIA490702.5214
MINNESOTA2835.991494
WISCONSIN17764.37838
NEBRASKA21366.36467
NEW YORK5.714285714