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. SUM_IF

SUM_IF

Written by
Yandex Cloud
Improved by
amatol
Updated at November 6, 2024

Function SUM_IF is also found in the following categories: Window functions.

SyntaxSyntax

Standard
Extended
SUM_IF( expression, condition )
SUM_IF( expression, condition
        [ FIXED ... | INCLUDE ... | EXCLUDE ... ]
        [ BEFORE FILTER BY ... ]
      )

More info:

  • FIXED, INCLUDE, EXCLUDE
  • BEFORE FILTER BY

DescriptionDescription

Returns the sum of all the expression values that meet the condition condition. Applicable to numeric data types only.

Argument types:

  • expression — Fractional number | Integer
  • condition — Boolean

Return type: Same type as (expression)

ExampleExample

Source data

City Category Orders Profit
'London' 'Office Supplies' 8 120.10
'London' 'Furniture' 1 750.00
'Moscow' 'Furniture' 2 1250.50
'Moscow' 'Office Supplies' 4 85.34
'San Francisco' 'Office Supplies' 23 723.00
'San Francisco' 'Technology' 12 1542.00
'Detroit' 'Furniture' 5 6205.87
'Detroit' 'Technology' 9 2901.00

Grouped by [City].

Sorted by [City].

Formulas:

  • City: [City] ;
  • Sum Orders: SUM_IF([Orders], [Orders] >= 5) ;
  • Sum Profit: SUM_IF([Profit], [Profit] >= 500) .

Result

City Sum Orders Sum Profit
'Detroit' 14 9106.87
'London' 8 750.00
'Moscow' NULL 1250.50
'San Francisco' 35 2265.00

Data source supportData source support

ClickHouse 21.8, Files, Google Sheets, Microsoft SQL Server 2017 (14.0), MySQL 5.7, Oracle Database 12c (12.1), PostgreSQL 9.3, Yandex Documents, YDB.

Was the article helpful?

Previous
SUM
Next
TOP_CONCAT
Yandex project
© 2025 Yandex.Cloud LLC