0% found this document useful (0 votes)
3 views

Types of DAX functions

DAX functions are categorized into six types: calculated column functions for creating new columns, measure functions for aggregations in reports, filter functions for narrowing down data, time intelligence functions for analyzing data over time, logical functions for evaluating conditions, and iterator functions for operations on individual rows. Each category serves a specific purpose in data analysis and reporting. Understanding these functions enhances the ability to manipulate and analyze data effectively.
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views

Types of DAX functions

DAX functions are categorized into six types: calculated column functions for creating new columns, measure functions for aggregations in reports, filter functions for narrowing down data, time intelligence functions for analyzing data over time, logical functions for evaluating conditions, and iterator functions for operations on individual rows. Each category serves a specific purpose in data analysis and reporting. Understanding these functions enhances the ability to manipulate and analyze data effectively.
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

DAX (Data Analysis Expressions) functions can be broadly categorized into calculated column

functions, measure functions, filter functions, time intelligence functions, logical functions,
and iterator functions.

Here's a more detailed breakdown:

 Calculated Column Functions:

These functions create new columns in your tables based on calculations.

 Measure Functions:

These functions are used for aggregations and calculations in reports, allowing you to
perform complex calculations and analyze data in different ways.

 Filter Functions:

These functions filter a table based on user-specified conditions, helping you narrow down
your data and display relevant information.

 Time Intelligence Functions:

These functions are designed to analyze and compare data over different time periods,
making them useful for analyzing sales, financials, and other time-related data.

 Logical Functions:

These functions evaluate conditions and return TRUE or FALSE, enabling you to create
conditional statements and perform dynamic calculations.

 Iterator Functions:

These functions enable you to perform operations on individual rows of a table, allowing you
to iterate through rows and apply a specific operation or calculation to each row.

You might also like