Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
jovendeluna21
Helper IV
Helper IV

Show only Relevant Values in a Dynamic Matrix(Hierarchies) when measure is formatted

Hello,

I have this dynamic matrix with dynamic rows. But the problem is when I try to format the measure into currency or percentage, it starts to show not relevant fields.

Attached herewith the pbi file: https://drive.google.com/file/d/1q7_YFhi5GCXBxT-aON6hTKqOGcHAxE8V/view?usp=sharing

 

Below is the example of without using any format to measure and it shows only relevant fields without blanks.

 

ss1.PNG

 

Below is the example of when I tried to format the measure, showing also not relevant fields or values.

 

ss.PNG

1 ACCEPTED SOLUTION
MFelix
Super User
Super User

Hi @jovendeluna21 ,

 

The issue is that when you add the formatting the value returns a text so it's not blank anymore but has a value of empty. 

 

Change you measure to check if the measure is different from blank:

Measure = 
SWITCH(
    TRUE(),
    [USER SELECTION]="AVE PAYMENT TERM-EX247A DAYS (last N months)",[AVE PAYMENT TERM-EX247A DAYS (last N months)],
    [USER SELECTION]="AVE PAYMENT TERM-DAYS (last N months)",[AVE PAYMENT TERM-DAYS (last N months)],
    [USER SELECTION]="Spend (last N-months)"&& [Spend (last N-months)] <> BLANK() ,FORMAT([Spend (last N-months)], "cURRENCY"),
    BLANK())

 

MFelix_0-1648817332822.png

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

2 REPLIES 2
MFelix
Super User
Super User

Hi @jovendeluna21 ,

 

The issue is that when you add the formatting the value returns a text so it's not blank anymore but has a value of empty. 

 

Change you measure to check if the measure is different from blank:

Measure = 
SWITCH(
    TRUE(),
    [USER SELECTION]="AVE PAYMENT TERM-EX247A DAYS (last N months)",[AVE PAYMENT TERM-EX247A DAYS (last N months)],
    [USER SELECTION]="AVE PAYMENT TERM-DAYS (last N months)",[AVE PAYMENT TERM-DAYS (last N months)],
    [USER SELECTION]="Spend (last N-months)"&& [Spend (last N-months)] <> BLANK() ,FORMAT([Spend (last N-months)], "cURRENCY"),
    BLANK())

 

MFelix_0-1648817332822.png

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Thank you @MFelix !!! This is very helpful!

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.