Forum Discussion
measure dax %
- Anonymous2 years ago
Hi Jhophshepht
To make the total correct, you may create a new measure:
Measure = AVERAGEX(VALUES('Table'[Número de documento]),[IRA Value])[IRA Value] is the old measure:
IRA Value = MAX('Table'[IRA])The "incorrect total" behavior is common in table/matrix visuals in Power BI, you can refer to the following blogs about how to deal with it. This occurs because Power BI intends to calculate the total based on rows of underlying data instead of the rows displayed in the visual.
Why Power BI totals might seem inaccurate - SQLBI
Obtaining accurate totals in DAX - SQLBI
Best Regards,
Jing
If this post helps, please Accept it as Solution to help other members find it. Appreciate your Kudos!
Hi Jhophshepht
To make the total correct, you may create a new measure:
Measure = AVERAGEX(VALUES('Table'[Número de documento]),[IRA Value])
[IRA Value] is the old measure:
IRA Value = MAX('Table'[IRA])
The "incorrect total" behavior is common in table/matrix visuals in Power BI, you can refer to the following blogs about how to deal with it. This occurs because Power BI intends to calculate the total based on rows of underlying data instead of the rows displayed in the visual.
Why Power BI totals might seem inaccurate - SQLBI
Obtaining accurate totals in DAX - SQLBI
Best Regards,
Jing
If this post helps, please Accept it as Solution to help other members find it. Appreciate your Kudos!
Muchas gracias, funciono, era lo que necesitaba.