Forum Discussion
How to Display (Blank)
Hi Anonymous ,
We can try to create some measure as following then use them in card visual to meet your requirement:
New_Measure_Countrow =
IF (
CALCULATE ( COUNTROWS ( 'Table' ), ALLSELECTED ( 'Table' ) )
= CALCULATE ( COUNTROWS ( 'Table' ), ALL ( 'Table' ) ),
BLANK (),
[Old_Measure_Countrow]
)
New_Measure_Sum =
IF (
CALCULATE ( COUNTROWS ( 'Table' ), ALLSELECTED ( 'Table' ) )
= CALCULATE ( COUNTROWS ( 'Table' ), ALL ( 'Table' ) ),
BLANK (),
[Old_Measure_Sum]
)
Replace [Old_Measure_Sum] with the measure you used in the card visual, 'Table' should be replaced with the table name of your fact table.
If it doesn't meet your requirement, Could you please show the exact expected result based on the Tables that we have shared?
BTW, pbix file as attached.
Best regards,
- Anonymous6 years agoNot applicable
I am not sure how to add the [Old_measure] . Please see my screenshot below. What am I doing wrong ? Thanks.
- v-lid-msft6 years agoCommunity Support
Hi Anonymous ,
Sorry for our delay in reply, What is put inside the card visual, measure or summarize of filed? If it is a measure , use the measure , if it is a sammarize of field , such as count, use Count('Table Name'[Field name]).
Best regards, - v-lid-msft6 years agoCommunity Support
Hi Anonymous ,
How about the result after you follow the suggestions mentioned in my original post? Could you please provide more details about it If it still not be resolved? Please don't contain any Confidential Information or Real data in your reply.
Best regards,