DAX Aggregation - MIN function



Description

Returns the smallest numeric value in a column.

Syntax

MIN (<column>)

Parameters

Sr.No. Parameter & Description
1

column

The column in which you want to find the smallest numeric value.

Return Value

A decimal number.

Remarks

The following types of values in the column are considered −

  • Numbers
  • Dates

Empty cells, logical values and text are ignored.

Example

= MIN (Sales[Sales Amount])
dax_functions_aggregation.htm
Advertisements