Looker Studio is now called Data Studio. Learn more about this change.

NARY_MIN

NARY_MIN is similar to MIN, except it lets you compare multiple values.

Syntax

NARY_MIN(X, Y, [,Z]*)

Parameters

  • X, Y, Z - fields or expressions to be evaluated.

Examples

Example 1

This example shows how you can mix fields, calculations, and literals in an NARY_MIN function:

NARY_MIN(REVENUE, (COST * 2), 10, SESSIONS))

Example 2

Suppose you want to determine the minimum sales for your 3 sales regions by date and your data looks like this:

Date Region 1 Sales Region 2 Sales Region 3 Sales
Date 1 100 200 150
Date 2 75 130 150
Date 3 225 185 230

You could use the NARY_MIN function to determine the minimum sales for a given date:

Example formula Date Output
NARY_MIN(Region 1 Sales, Region 2 Sales, Region 3 Sales,) Date 1 100
Date 2 75
Date 3 185

Notes

NARY_MIN requires at least 2 arguments. At least one argument must be a field or an expression containing a field.

NARY_MIN works on numeric fields or expressions only. If you apply this function to other data types, you'll get an error.

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2026年08月26日 UTC.