Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
  • Blog
  • Pricing
  • Documentation
Yandex project
© 2025 Yandex.Cloud LLC
Yandex DataLens
    • Overview
    • Formula syntax
      • All Functions
        • Overview
        • ALL_CONCAT
        • ANY
        • ARG_MAX
        • ARG_MIN
        • AVG
        • AVG_IF
        • COUNT
        • COUNTD
        • COUNTD_APPROX
        • COUNTD_IF
        • COUNT_IF
        • MAX
        • MEDIAN
        • MIN
        • QUANTILE
        • QUANTILE_APPROX
        • STDEV
        • STDEVP
        • SUM
        • SUM_IF
        • TOP_CONCAT
        • VAR
        • VARP
      • Function Availability
    • Parameters
  • Audit Trails events
  1. Calculated fields
  2. Function reference
  3. Aggregate functions
  4. ARG_MIN

ARG_MIN

Written by
Yandex Cloud
Updated at November 6, 2024

SyntaxSyntax

Standard
Extended
ARG_MIN( value, expression_to_minimize )
ARG_MIN( value, expression_to_minimize
         [ FIXED ... | INCLUDE ... | EXCLUDE ... ]
         [ BEFORE FILTER BY ... ]
       )

More info:

  • FIXED, INCLUDE, EXCLUDE
  • BEFORE FILTER BY

DescriptionDescription

Returns value for the minimum value of expression_to_minimize in the group. If multiple values of value match the minimum value of expression_to_minimize, then the first one encountered is returned. This makes the function non-deterministic.

Argument types:

  • value — Any
  • expression_to_minimize — Any

Return type: Same type as (value)

ExampleExample

Source data

Date Temperature
2019-03-01 5.00
2019-03-02 0.00
2019-03-03 -3.00
2019-03-04 1.00
2019-03-05 4.00
2019-03-06 5.00
2019-03-07 1.00
2019-03-08 -6.00
2019-03-09 -6.00
2019-03-10 -4.00
2019-03-11 -2.00
2019-03-12 0.00

Formulas:

  • Coldest Day: ARG_MIN([Date],[Temperature]) .

Result

Coldest Day
2019-03-08

Data source supportData source support

ClickHouse 21.8, Files, Google Sheets, Yandex Documents, YDB.

Was the article helpful?

Previous
ARG_MAX
Next
AVG
Yandex project
© 2025 Yandex.Cloud LLC