Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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.
Solved! Go to 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],",")))
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 OPTIONS
SELECT 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],",")))
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...
Seems to be very complex, @Greg_Deckler Can you please correct my DAX formula so that i get the required results ?
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
143 | |
74 | |
63 | |
51 | |
47 |
User | Count |
---|---|
211 | |
83 | |
64 | |
60 | |
56 |