Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi Community,
I want to Convert Column into List. Please find below details.
Dataset = Select Distinct ids from table
Output of dataset:
IDs
123
456
789
So i want to display these values in taxtbox as 123,456,789
Thanks,
Pravin
@Anonymous
You can create a measure as follows and use it on a card visual:
ID List =
CONCATENATEX (
DISTINCT (tablename[IDs]),
tablename[IDs],
", "
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
5 | |
4 | |
1 | |
1 | |
1 |
User | Count |
---|---|
9 | |
5 | |
4 | |
4 | |
2 |