dcount() (aggregation function)

Learn how to use the dcount() function to return an estimate of the number of distinct values of an expression within a group.

Calculates an estimate of the number of distinct values that are taken by a scalar expression in the summary group.

Syntax

dcount (expr[, accuracy])

Parameters

NameTypeRequiredDescription
exprstring✔️The input whose distinct values are to be counted.
accuracyintThe value that defines the requested estimation accuracy. The default value is 1. See Estimation accuracy for supported values.

Returns

Returns an estimate of the number of distinct values of expr in the group.

Example

This example shows how many types of storm events happened in each state.

StormEvents
| summarize DifferentEvents=dcount(EventType) by State
| order by DifferentEvents

The results table shown includes only the first 10 rows.

StateDifferentEvents
TEXAS27
CALIFORNIA26
PENNSYLVANIA25
GEORGIA24
ILLINOIS23
MARYLAND23
NORTH CAROLINA23
MICHIGAN22
FLORIDA22
OREGON21
KANSAS21

Estimation accuracy