Forum Discussion

ncbshiva's avatar
ncbshiva
Advocate V
7 years ago
Solved

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: India"

And if i select one more country like "Germany" , then my title should show as "Selected Country: India,Germany".

 When all the countries are selected then it should show as "Selected Country: All".

 

My DAX formula is below which shows "ALL" when multiple countries is selected.

 

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")

 

Please help me with the correct DAX formula.

 

Regards.

  • 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],",")))

11 Replies