Forum Discussion
Elisa_E
9 years agoHelper I
Dynamic text based on slicer
Hi, I have a dataset with three key columns (country, category, and value). Some countries do not have data in the value column for some categories. I have certain visuals connected to a country...
- 9 years ago
You may add a measure for Card visual.
Measure = IF ( ISFILTERED ( Table1[country] ), SUM ( Table1[value] ), "No data available" )
v-chuncz-msft
9 years agoCommunity Support
You may add a measure for Card visual.
Measure =
IF (
ISFILTERED ( Table1[country] ),
SUM ( Table1[value] ),
"No data available"
)