Forum Discussion
How to display text dynamically in Power BI
Anonymous , By default that should be the behavior. Have you added +0 to any measure. Or used option- Show item with No Data?
You can add a visual level filter [Load **bleep**] <> 0
Uncheck
- Anonymous5 years agoNot applicable
amitchandak, thanks for reverting. The filter for "Show items with no data" was always unchecked. The visual level filter does help, however I was looking for some DAX Code here. Also, yes I have displayed (Blank) as 0 for the field "Load Count", as I have a Card visual created for this field too, where I would like to display "Blank" as "0". Hence, was searching for an option where I don't have to use visual filter nor have to revert the code for Load Count from 0 to Blank. Can you please help here?
- amitchandak5 years ago
Super User
Anonymous , Have a measure
if( [Load Count] =0 , blank(),[Load Count])