INFO.MEASURES DAX function in Power BI

The INFO.MEASURES() function in DAX is part of the INFO family of functions, which are designed to provide metadata about a data model. Specifically, INFO.MEASURES() retrieves a list of all measures defined in the current model.

INFO.MEASURES() returns a table containing detailed information about every measure in the model. Each row in the resulting table corresponds to a single measure, and the columns provide metadata about that measure, such as its name, expression, and other properties.

Syntax INFO.MEASURES()

Since INFO.MEASURES() returns a table, it must be used within a DAX query that can handle table output, such as with the EVALUATE statement. For example:

DAX

EVALUATE INFO.MEASURES()

When executed, this query will return a table listing all measures in the model.

INFO.MEASURES DAX function in Power BI

Returned Columns Some of the returned columns are described below:

Use Cases