Forum Discussion
Add Measure Column to Matrix
- 4 years ago
Hi, vishnuteja
Are you trying to control the Total of the Matrix view using Measure? If this is the case, you can learn about the HASONEVALUE function. https://docs.microsoft.com/dax/hasonevalue-function-dax
As an example, for the data shown in the figure, total defaults to sum, but I want to display the smallest value of it.
Measure = IF(HASONEVALUE('Table'[Sales]),SUM('Table'[Sales]),MIN('Table'[Sales]))If the method I provided above can't solve your problem, what's your expected result? Can you provide a simple PBIX file for testing?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, vishnuteja
Are you trying to control the Total of the Matrix view using Measure? If this is the case, you can learn about the HASONEVALUE function. https://docs.microsoft.com/dax/hasonevalue-function-dax
As an example, for the data shown in the figure, total defaults to sum, but I want to display the smallest value of it.
Measure = IF(HASONEVALUE('Table'[Sales]),SUM('Table'[Sales]),MIN('Table'[Sales]))
If the method I provided above can't solve your problem, what's your expected result? Can you provide a simple PBIX file for testing?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.