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 I have created a table using existing columns for my project, it has restaurant id and cuisines, multiple cuisines are there in a raw,
when i use multi raw card cuisines are shown as single raw, i need to display as multiple rows, can someone help me pls.
table was created using below commands
cuisines served = SUMMARIZE(Restaurant, Restaurant[Restaurant ID],Restaurant[Cuisines])
When i use multi raw cards it appears as below, I need it to be as second screen where items are in multiple rows.
thanks in advance
Solved! Go to Solution.
Hi @tilvit1130
I would suggest that you split the Cuisines column by comma into Rows and trim the result column in Power Query editor. After that, apply the change and drag the new Cuisines column into the multiple-row card. You will have them in multiple rows then.
I do this in a new table, so I create a relationship (many-to-one) between it and original table on Restaurant ID column. See the attachment.
Result:
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Hi @tilvit1130
I would suggest that you split the Cuisines column by comma into Rows and trim the result column in Power Query editor. After that, apply the change and drag the new Cuisines column into the multiple-row card. You will have them in multiple rows then.
I do this in a new table, so I create a relationship (many-to-one) between it and original table on Restaurant ID column. See the attachment.
Result:
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Hi Fowmy, THanks for your quick reply
when i try to apply above to measure, Restaurant[Cuisines] -> 'Cannot find name '[Cuisines]'
if i change to
NewMeasure =
CONCATENATEX (
Restaurant,
Restaurant[Cuisines],
UNICHAR (10)
)
i am getting the same results not giving in separate rows. screen shot attached
thanks for the suppport.
@tilvit1130
Create a small Power BI file with dummy data and with your scenario and share it to check, explain the expected results clearly.
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@tilvit1130
You can create a measure follows and use it:
NewMeasure =
CONCATENATEX (
'cuisines served',
Restaurant[Cuisines],
UNICHAR (10)
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Dear Fowmy
please find a dummy from below link
https://drive.google.com/drive/folders/1helZBX_IFzWbhKyqUhxOJo74ybE8Rr1z?usp=sharing
Regards
Bary
@tilvit1130
You can use a Card Visual to show line by line
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Dear Fowmy
i try to create reference of the resturant table and getting below error any idea why i am getting this one pls.
Dear Fowmy
Used a card visual but didnt get the line by line,
rgds
bary
Dear Fowmy
used card visual but did not show line by line
regards
bary
Dear Fowmy
used card visual but did not show line by line
regards
bary
Check out the July 2025 Power BI update to learn about new features.