Forum Discussion
ncbshiva
7 years agoAdvocate V
Dynamic Titles when mutiple values selected
Hi Team, I have a requirement to show the selected filter values in the title. For example : i have country column as filter. If we select "India" then my title should show as "Selected Country:...
- 7 years ago
Measure = VAR __allCount = COUNTX(ALL(Table1[Country]),[Country]) VAR __currentCount = COUNTX(Table1,[Country]) RETURN IF(HASONEVALUE(Table1[Country]),MAX(Table1[Country]),IF(__allCount=__currentCount,"All",CONCATENATEX(VALUES(Table1[Country]),[Country],",")))
Greg_Deckler
7 years agoCommunity Champion
Measure = VAR __allCount = COUNTX(ALL(Table1[Country]),[Country]) VAR __currentCount = COUNTX(Table1,[Country]) RETURN IF(HASONEVALUE(Table1[Country]),MAX(Table1[Country]),IF(__allCount=__currentCount,"All",CONCATENATEX(VALUES(Table1[Country]),[Country],",")))
ncbshiva
7 years agoAdvocate V
Greg_Deckler Thanks for the help , This is what i was expecting.