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],",")))
nirvana_moksh
7 years agoImpactful Individual
Try this, you have used semi colons which is erroring it out -
Country Name ="Selected Country: "&IF (
HASONEVALUE ( Country[Name]),
IF (
COUNT ( Country[Name]) = 1,VALUES (Country[Name] ),
IF ( COUNT ( Country[Name] ) > 1,VALUES ( Country[Name] )
)),
"All")
- ncbshiva7 years agoAdvocate V
I am not getting any error. In my region i am using semicolon instead of commas.
- nirvana_moksh7 years agoImpactful Individual
Hmmm, that is strange, I was getting errors for it when using the DAX I replied within a measure.
- ncbshiva7 years agoAdvocate V
nirvana_moksh This depends on the region where you are , Can u help me with the correct DAX formula ?