Forum Discussion
Anonymous
6 years agoNot applicable
How to Display (Blank)
Hi all, I am new to Power BI. I built a dashboard using slicers and Cards as my visualizations. I would like my cards to show as (Blank) instead of showing numbers. Is there a way to display (Bla...
Anonymous
6 years agoNot applicable
Any idea what kind of measure goes at the end ?
Greg_Deckler
Community Champion
6 years agoWell, if you're currently using a measure for those visualizations, let's call it "My Measure," then you'd do this:
Measure?
IF(COUNTROWS('Table') ? COUNTROWS(ALL('Table')),BLANK(),[My Measure])
If you display a column of values and use a default SUM aggregation, you would:
Measure?
IF(COUNTROWS('Table') รก COUNTROWS(ALL('Table')),BLANK(),SUM('Table'[MyColumn]))
- Anonymous6 years agoNot applicable
I have this written but its not working. Am doing something wrong ?
Thanks,
Measure = IF(COUNTROWS('Products Data') ,COUNTROWS(ALL('Products Data')),BLANK(),SUM('Products Data'[YTD # of New Core Accts]))- HashamNiaz6 years ago
Solution Sage
Hi !
The measure will not behave as expected unless you have selected [All] option on your slicer / filters.
Regards,
- Anonymous6 years agoNot applicable
The [All] option is default so I cannot select it. Still not able to display (Blank) after trying your solution.