Forum Discussion
dw700d
3 years agoPost Patron
Default Value 0
I have card visuals that show the total amount of toys, cars, cats and houses. I am slicing this data by date. if a date is not selected in the slicer I would like the default value of the card visua...
- 3 years ago
- 3 years ago
Hi, dw700d
You can try the following methods.
Sample data:SUM = SUM('Table'[Value])Measure = IF(ISFILTERED('Table'[Date]),[SUM],0)Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-zhangti
3 years agoCommunity Support
Hi, dw700d
You can try the following methods.
Sample data:
SUM = SUM('Table'[Value])Measure = IF(ISFILTERED('Table'[Date]),[SUM],0)
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.