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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi All,
I am new into PowerBI and want to merge multiple rows into one row based on some values.
I found similar post but using advance editor.
Does anyone able to solve this problem via step by step query editor methods?
Thank you!
FYI,
For example:
Raw data
Vendor | E-Mail Address |
10000128 | |
10000128 | |
10000588 | |
10000588 | |
10000588 | |
10000622 | |
10000622 | |
10000622 |
To be applicable by team:
VENDOR | |
10000128 | |
10000588 | |
10000622 |
Solved! Go to Solution.
Hello,
You can create a new Measure (no column) with this formula :
Mails = CONCATENATEX(Vendor;Vendor[E-Mail Address];"; ")
This will not create a new column in your table
Hello,
You can create a new Measure (no column) with this formula :
Mails = CONCATENATEX(Vendor;Vendor[E-Mail Address];"; ")
This will not create a new column in your table