Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hi All,
I have a data set like the below,
And I am displaying this data by using Matrix visualization ,
For the categaory "E" there is no data for the month 2017-02 . So the value is Blank in the visual. I wanted to dispaly some text like "NR" in that place.
How could this be achieved, thanks in advance.
Regards,
P.Kalidoss
Solved! Go to Solution.
Hi @sivadoss87
I created a new Calculated table over your data as follows :
NR Table = NATURALLEFTOUTERJOIN( CROSSJOIN( VALUES('Table1'[Category]), VALUES('Table1'[Yr-Mon])), 'Table1')
And then on the new table I created the following Calcuated Measure
New Measure = if(sum('NR Table'[Value])=0,"NR",FORMAT(sum('NR Table'[Value]),"###"))
I could then create a matrix using the new table and measure
Hi @sivadoss87
I created a new Calculated table over your data as follows :
NR Table = NATURALLEFTOUTERJOIN( CROSSJOIN( VALUES('Table1'[Category]), VALUES('Table1'[Yr-Mon])), 'Table1')
And then on the new table I created the following Calcuated Measure
New Measure = if(sum('NR Table'[Value])=0,"NR",FORMAT(sum('NR Table'[Value]),"###"))
I could then create a matrix using the new table and measure
Hi @sivadoss87,
After test, @Phil_Seamark posted is right. If you have resolved your issue, please mark the reight reply as answer, which will help for other people. Thanks for understanding.
Best Regards,
Angelia
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
75 | |
72 | |
69 | |
45 | |
41 |
User | Count |
---|---|
63 | |
41 | |
30 | |
28 | |
28 |