Forum Discussion
T_Campelo
8 years agoFrequent Visitor
Filter Text Card
Good Morning,
I am new to the community so sorry in advance if I am posting my question in the wrong place. I am trying to use the Card function to have a "filtered title" on my dashboard. The idea is that, when I use the filter Region, the Name of the region appears on the card. The problem is that when the filter is not active, the card gives me one of the regions by default. Is it possible to format the card to give me the output "All" when the filter is not selected?
Thank you in advance for your support
Yes. You can have 'ALL' if no region is selected. Create a measure like below,
SelectedReg = SELECTEDVALUE(TableName[Region], "All")
Hope it will help you!