Forum Discussion
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.
Below is the example of when I tried to format the measure, showing also not relevant fields or values.
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())
2 Replies
- MFelix
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())- jovendeluna21
Helper IV
Thank you MFelix !!! This is very helpful!