Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
ncbshiva
Advocate V
Advocate 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: 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.

1 ACCEPTED SOLUTION

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

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Mastering Power BI 2nd Edition

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

11 REPLIES 11
nirvana_moksh
Impactful Individual
Impactful 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")

I am not getting any error. In my region i am using semicolon instead of commas.

Hmmm, that is strange, I was getting errors for it when using the DAX I replied within a measure.

@nirvana_moksh This depends on the region where you are , Can u help me with the correct DAX formula ?

SELECT ALL OPTIONSSELECT ALL OPTIONSSELECT 1 OPTIONSELECT 1 OPTION

@nirvana_moksh Thanks for trying,

 

My requirement is when i select multiple countries together like "India,Mexico and USA". Then it should show as 

Selected Country : India,Mexico,USA

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

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Mastering Power BI 2nd Edition

DAX is easy, CALCULATE makes DAX hard...

@Greg_Deckler Thanks for the help , This is what i was expecting.

Greg_Deckler
Super User
Super User

Check out The Most Amazing, Mind Blowing, Dynamics Slicer Title Measure Ever. https://community.powerbi.com/t5/Quick-Measures-Gallery/The-Most-Amazing-Mind-Blowing-Dynamic-Slicer...

 


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Mastering Power BI 2nd Edition

DAX is easy, CALCULATE makes DAX hard...

Seems to be very complex, @Greg_Deckler Can you please correct my DAX formula so that i get the required results ?

@Greg_Deckler - always blown away and amazed by your solutions, thanks Greg!

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.