INDEX DAX Function (Filter)

Retrieves a row at an absolute position (specified by the position parameter) within the specified partition sorted by the specified order or on the axis specified.

Syntax

INDEX ( <Position> [, <Relation>] [, <OrderBy>] [, <Blanks>] [, <PartitionBy>] [, <MatchBy>] [, <Reset>] )
Parameter Attributes Description
Position

The absolute position (1-based) from which to obtain the data:

  • Position is positive: 1 is the first row, 2 is the second row, etc.
  • Position is negative: -1 is the last row, -2 is the second last row, etc.

When Position is out of the boundary, or zero, or BLANK(), INDEX will return an empty table. It can be any DAX expression that returns a scalar value.

Relation Optional

A table expression from which the output is returned.
If specified, all columns in OrderBy and PartitionBy must come from it.
If omitted:

  • OrderBy must be explicitly specified.
  • All OrderBy and PartitionBy columns must come from a single table.
  • Defaults to ALLSELECTED() of all columns in OrderBy and PartitionBy.
OrderBy Optional

An ORDERBY() clause containing the columns that define how each partition is sorted.
If omitted:

  • Relation must be explicitly specified.
  • Defaults to ordering by every column in Relation.
Blanks Optional

An enumeration that defines how to handle blank values when sorting.
This parameter is reserved for future use.
Currently, the only supported value is KEEP (default), where the behavior for numerical/date values is blank values are ordered between zero and negative values. The behavior for strings is blank values are ordered before all strings, including empty strings.

PartitionBy Optional

A PARTITIONBY() clause containing the columns that define how Relation is partitioned.
If omitted, Relation is treated as a single partition.

MatchBy Optional

Columns that define how the current row is identified.

Reset Optional

Specifies how the calculation restarts. Valid values are: None, LowestParent, HighestParent, or an integer.

Return values

Table An entire table or a table with one or more columns.

A row at an absolute position.

Remarks

Each PartitionBy column must have a corresponding outer value to help define the “current partition” on which to operate, with the following behavior:

  • If there is exactly one corresponding outer column, its value is used.
  • If there is no corresponding outer column:
    • INDEX will first determine all PartitionBy columns that have no corresponding outer column.
    • For every combination of existing values for these columns in INDEX’s parent context, INDEX is evaluated and a row is returned.
    • INDEX’s final output is a union of these rows.
  • If there is more than one corresponding outer column, an error is returned.

If the non-volatile columns specified within OrderBy and PartitionBy cannot uniquely identify every row in Relation:

  • INDEX will try to find the least number of additional columns required to uniquely identify every row.
  • If such columns can be found, INDEX will automatically append these new columns to OrderBy, and each partition is sorted using this new set of OrderBy columns.
  • If such columns cannot be found, an error is returned.

An empty table is returned if:

  • The corresponding outer value of a PartitionBy column does not exist within Relation.
  • The Position value refers to a position that does not exist within the partition.

If INDEX is used within a calculated column defined on the same table as Relation and OrderBy is omitted, an error is returned.

» 1 related article
» 4 related functions

Examples

EVALUATE
VAR BrandsAndSales =
    ADDCOLUMNS (
        ALL ( 'Product'[Brand] ),
        "@Sales", [Sales Amount]
    )
RETURN
    INDEX (
        2,
        BrandsAndSales,
        ORDERBY ( [@Sales], DESC )
    )
Brand @Sales
Contoso 2,227,244.32
EVALUATE
SUMMARIZECOLUMNS (
    Product[Brand],
    'Date'[Year],
    "Sales", [Sales Amount],
    "Sales First Year",
        CALCULATE (
            [Sales Amount],
            INDEX (
                1,
                ORDERBY ( 'Date'[Year] )
            )
        )
)
Product[Brand] Date[Year] Sales Sales First Year
Contoso 2,017 511,810.85 511,810.85
Contoso 2,018 868,179.21 511,810.85
Contoso 2,019 707,010.55 511,810.85
Contoso 2,020 140,243.70 511,810.85
Wide World Importers 2,017 483,427.60 483,427.60
Wide World Importers 2,018 737,726.73 483,427.60
Wide World Importers 2,019 458,943.97 483,427.60
Wide World Importers 2,020 116,832.70 483,427.60
Northwind Traders 2,017 21,598.14 21,598.14
Northwind Traders 2,018 64,737.97 21,598.14

Related articles

Learn more about INDEX in the following articles:

Related functions

Other related functions are:

Last update: Apr 11, 2024   » Contribute   » Show contributors

Contributors: Alberto Ferrari, Marco Russo, Daniil Maslyuk

Microsoft documentation: https://learn.microsoft.com/en-us/dax/index-function-dax

2018-2024 © SQLBI. All rights are reserved. Information coming from Microsoft documentation is property of Microsoft Corp. » Contact us   » Privacy Policy & Cookies

Context Transition

This function performs a Context Transition if called in a Row Context. Click to read more.

Row Context

This expression is executed in a Row Context. Click to read more.

Iterator

Not recommended

The use of this function is not recommended. See Remarks and Related functions for alternatives.

Not recommended

The use of this parameter is not recommended.

Deprecated

This function is deprecated. Jump to the Alternatives section to see the function to use.

Volatile

A volatile function may return a different result every time you call it, even if you provide the same arguments. Click to read more.

Deprecated

This parameter is deprecated and its use is not recommended.

DirectQuery compatibility

Limitations are placed on DAX expressions allowed in measures and calculated columns.
The state below shows the DirectQuery compatibility of the DAX function.

Contribute

Want to improve the content of INDEX? Did you find any issue?
Please, report it us! All submissions will be evaluated for possible updates of the content.


This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.