The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
108 | |
78 | |
66 | |
52 | |
50 |
User | Count |
---|---|
121 | |
118 | |
77 | |
64 | |
63 |