Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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
| User | Count |
|---|---|
| 56 | |
| 42 | |
| 30 | |
| 18 | |
| 16 |
| User | Count |
|---|---|
| 70 | |
| 58 | |
| 38 | |
| 22 | |
| 22 |