Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
Hi,
I need to create a card including multiple values for a given category.
Let's assume I have a table like this:
| Plate | Brand | Status |
| 123456 | Audi | Good |
| 111111 | VW | Poor |
| 222222 | BMW | New |
| 333333 | Audi | Very Good |
| 444444 | VW | New |
| 555555 | BMW | Poor |
I want to create a page with a slicer associated to the Column "Brand" and a card reporting all the status associated to the selected "Brand":
Order within card is not relevant
Thanks in advance
Bruno
Solved! Go to Solution.
Hi @Br1-981 ,
Please try this measure.
Measure = CONCATENATEX(DISTINCT('Table'[Status]),'Table'[Status],"-")
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
Hi @Br1-981 ,
If you need to de-duplicate the status field, try this measure.
Measure = CONCATENATEX(CALCULATETABLE(VALUES('Table'[Status])),'Table'[Status],",",'Table'[Status],ASC)
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
Thanks,
In the meantime I used the
CONCATENATEX (
ALLSELECTED (CampaignData[Social - Format (Video/Static)]), CampaignData[Social - Format (Video/Static)],
" - "The problem is that is not considering unique values:
Is there a way to have unique values?
Cheers
Hi @Br1-981 ,
Please try this measure.
Measure = CONCATENATEX(DISTINCT('Table'[Status]),'Table'[Status],"-")
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
use multirow card if the comma separated format is not necessary .
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 24 | |
| 22 | |
| 21 | |
| 20 | |
| 14 |
| User | Count |
|---|---|
| 58 | |
| 52 | |
| 41 | |
| 33 | |
| 31 |