Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi Expert,
I want to display multiple selected value from single slicer in a card/table. Would you please help me to write dax/measure?
Client wanted to see all the selected values from slicer on the report.
Any help would be highly appreciated.
TIA
Solved! Go to Solution.
Hi @Uzi2019
Create a measure like this and place it in a card. If nothign is selected it displays the message "No Selection" - chnage that to anything you like.
Selections = IF(ISFILTERED('DataTable'[Values]),CONCATENATEX(VALUES('DataTable'[Values]),'DataTable'[Values],", "),"No Selection")
Regards
Phil
Proud to be a Super User!
Hi @Uzi2019
Create a measure like this and place it in a card. If nothign is selected it displays the message "No Selection" - chnage that to anything you like.
Selections = IF(ISFILTERED('DataTable'[Values]),CONCATENATEX(VALUES('DataTable'[Values]),'DataTable'[Values],", "),"No Selection")
Regards
Phil
Proud to be a Super User!
Thanks alot. It really worked.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.