count() (aggregation function)

Learn how to use the count() function to count the number of records in a group.

Counts the number of records per summarization group, or total if summarization is done without grouping.

To only count records for which a predicate returns true, use countif().

Syntax

count()

Returns

Returns a count of the records per summarization group, or in total if summarization is done without grouping.

Example

The following example returns a count of events in states:

StormEvents
| summarize Count=count() by State

Output

StateCount
TEXAS4701
KANSAS3166
IOWA2337
ILLINOIS2022
MISSOURI2016
GEORGIA1983
MINNESOTA1881
WISCONSIN1850
NEBRASKA1766
NEW YORK1750