Forum Discussion
socalmark
5 years agoNew Member
DAX Matrix Help
Hi all,
wanted to see if it was possible to change the "count of _______" in the values section of the Power BI matrix to showing a "X" if there is a value and blank if there is no value. Thanks for the help!
1 Reply
- mahoneypatMicrosoft Employee
Yes. Make a measure like this, changing Table and Column to match actual names in your model.
CountMeasure = var mycount = COUNT(Table[Column1])
Return IF(ISBLANK(mycount), BLANK(), "X")
Regards,
Pat