- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Replacing empty cells in Matrix visual
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
01-30-2019 03:38 AM
Hi folks,
I want to replace empty cells in Matrix Visual.
Please suggest DAX query or any function .
Any help would be appreciated.
Thanks in advance.
Solved! Go to Solution.
Accepted Solutions
Re: Replacing empty cells in Matrix visual
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
01-30-2019 04:08 AM
Hi @DAX_Learner,
Create a table with the Div unique values and make a relationship with the other table then create the following measure
No Value Measure = IF ( SUM ( Table1[Value] ) = BLANK (); "No Value"; SUM ( Table1[Value] ) )
Result below:
See PBIX file attach.
Regards,
Mfelix
Did I answer your question? Mark my post as a solution!
Proud to be a Datanaut!
All Replies
#Replacing empty cells in Matrix visual #
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
01-30-2019 03:37 AM
Hi folks,
I want to replace empty cells in Matrix Visual.
Please suggest DAX query or any function .
Any help would be appreciated.
Thanks in advance.
Re: Replacing empty cells in Matrix visual
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
01-30-2019 04:08 AM
Hi @DAX_Learner,
Create a table with the Div unique values and make a relationship with the other table then create the following measure
No Value Measure = IF ( SUM ( Table1[Value] ) = BLANK (); "No Value"; SUM ( Table1[Value] ) )
Result below:
See PBIX file attach.
Regards,
Mfelix
Did I answer your question? Mark my post as a solution!
Proud to be a Datanaut!