Forum Discussion
Card Visualization - Do not show (Blank)
- 4 years ago
If you are talking about selecting a slicer, you want your measurement to come back blank when the row is empty, then do not do it if the condition because you are going to find it blank or you need to add a SELECTED VALUE to your measure.
Example:
Can you share a sample? it would be easier to understand this way
Hi AvPowerBI
Just white box, no not possible...but you can replace the Blank by some term of your choice, you will need to add a DAX measure using IF condition to the calculation.
I created a New Column with the below IF Statement
Thanks
- aj19734 years agoCommunity Champion
No,
You need to add a measure not a calculated column, using Min(date) or EARLIER, EARLIEST...
- AvPowerBI4 years agoPost Patron
I have created a measure instead (though the field I am using is a Date field?)
End Date 2 =IF(ISBLANK(MIN('Fact'[End Date]))," ",MIN('Fact'[End Date]))This is the result it is showing for the Card visual when using this new Measure End Date 2Has it something to do with my DAX or not possible with Date Types
- aj19734 years agoCommunity Champion
If you are talking about selecting a slicer, you want your measurement to come back blank when the row is empty, then do not do it if the condition because you are going to find it blank or you need to add a SELECTED VALUE to your measure.
Example:
Can you share a sample? it would be easier to understand this way