The AVERAGE function in Power BI allows you to calculate the average of a numerical column in a table or a measure. However, the DAX (Data Analysis Expressions) syntax for calculating the average depends on the specific structure of your data model.
If you have a table with a column containing numerical values and you want to calculate the average of that column, you can use the following DAX formula:
Syntax :
Average = AVERAGE(<column>)
It's important to note that Power BI calculates measures on the fly based on the data in your model, so the average will be dynamic and update when the underlying data changes or when you interact with visuals.
Thank you,
Gokul Tech
Comments
Post a Comment