Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi,
Hoping someone can help explain how to show multiple text entires in a single column.
Currently I have selected 'Count (Distinct)' on '# countries' which returns the below table:
However, in the same table I also want to see who the countries are. If I change 'Count (Distinct)' to 'Don't summarize' then I get the below view, but then each country is shown on a new row:
I'd like to have it where on a single row it shows that for a Company 'ie Crystal Martin', they operate in 2 countries, and those countries are show as 'Bangladesh, Sri Lanka'
Is this possible? Feels like an easy one but I haven't been able to find a solution.
Thanks in advance!
Solved! Go to Solution.
Create a measure and use that
concatenateX(Table, Table[Country], ", ")
Concatenate Text- Measure, DAX Table, and Power Query Table: https://youtu.be/xAh3tz1qo24
Create a measure and use that
concatenateX(Table, Table[Country], ", ")
Concatenate Text- Measure, DAX Table, and Power Query Table: https://youtu.be/xAh3tz1qo24
Thanks so much @amitchandak!
The solution you provided returned the following:
Supplier Countries =
concatenateX(Table, Table[Country], ", ")
However, because I wanted distinct country values only, there was a solution in the link to the video you provided:
Thanks once again for your help and prompt response!!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
9 | |
7 | |
7 | |
6 |
User | Count |
---|---|
21 | |
11 | |
10 | |
9 | |
8 |