min - Amazon QuickSight
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

min

The min function returns the minimum value of the specified measure or date, grouped by the chosen dimension or dimensions. For example, min(return rate) returns the minimum rate of returns grouped by the (optional) chosen dimension.

Syntax

min(measure, [group-by level])

Arguments

measure

The argument must be a measure or a date. Null values are omitted from the results. Literal values don't work. The argument must be a field.

Minimum dates work only in the Value field well of tables and pivot tables.

group-by level

(Optional) Specifies the level to group the aggregation by. The level added can be any dimension or dimensions independent of the dimensions added to the visual.

The argument must be a dimension field. The group-by level must be enclosed in square brackets [ ]. For more information, see LAC-A functions.

Examples

The following example returns the minimum sales value for each region. It is compared to the total, max, and median sales.

min({Sales})
The minimum sales value for each region.

You can also specify at what level to group the computation using one or more dimensions in the view or in your dataset. This is called a LAC-A function. For more information about LAC-A functions, see LAC-A functions. The following example calculates the minimum sales at the Country level, but not across other dimensions (Region) in the visual.

min({Sales}, [Country])
The minimum sales value in each country.