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 everyone...
I would like to have a card visualization display the Project ID selected in a page filter from a column with non-distinct values, or the text, "Multiple" if more than one distinct project is selected. For example; if the user selects Project ID "1" from a page filter created from the column below, "1" will be displayed in the card. If they select Project IDs "1" and "2," "Multiple" will be displayed in the card. Any thoughts on how the DAX should be written?
| Project ID |
| 1 |
| 1 |
| 1 |
| 2 |
| 3 |
| 4 |
| 4 |
| 4 |
| 5 |
Solved! Go to Solution.
Hi @Anonymous ,
You can try this measure and drag to your card.
Measure = IF(HASONEVALUE('Table'[Project ID]),SELECTEDVALUE('Table'[Project ID]), "MULTIPLE")
Hope this helps.
Hi @Anonymous ,
You can try this measure and drag to your card.
Measure = IF(HASONEVALUE('Table'[Project ID]),SELECTEDVALUE('Table'[Project ID]), "MULTIPLE")
Hope this helps.
Perfect. Thank you.
Thank you. I'll keep this solution in my back pocket if the requirement calls to list the multiple Project IDs selected in a card instead of the word, "Multiple." 👍
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.