Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Thank you in advance!
I have a trable that changes based on a filter. I would like to get a string that lists the values in that table seperated by commas. For example, if my table said:
USA
PERU
Canada
I would like to see a string that says "USA, Peru, Canada". The table will never have more than 10 rows.
Thank you again!!
Solved! Go to Solution.
Hi @Vasili
you can use CONCATENATEX. If the result to be displayed in a card visual for example you can iterate over the VALUES of the column
CONCATENATEX (
VALUES ( TableName[ColumnName] ),
TableName[ColumnName],
", "
)
Hi @Vasili
you can use CONCATENATEX. If the result to be displayed in a card visual for example you can iterate over the VALUES of the column
CONCATENATEX (
VALUES ( TableName[ColumnName] ),
TableName[ColumnName],
", "
)
Awesome, it works... thank you so much!
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 19 | |
| 13 | |
| 10 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 31 | |
| 28 | |
| 19 | |
| 11 | |
| 10 |