Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Dear, all
Here is my problem is i want to transform my table from row value to columns. Which means the rows that transfrom to columns bind itself with the key by the Boolean condition 1 or 0.
| Seller_Id | Product |
| 1 | Chess |
| 2 | Door |
| 3 | Shampoo |
| 4 | shoes |
Here what i want after the transformation :
True is the seller have sell the product , False if not
| Seller _Id | Chess | Door | shampoo | shoes |
| 1 | 1 | 0 | 1 | 1 |
| 2 | 0 | 1 | 0 | 0 |
| 3 | 1 | 1 | 1 | 1 |
| 4 | 1 | 1 | 0 | 0 |
Thanks in advance
Solved! Go to Solution.
@Anonymous , 1 is matrix visual
seller on row, product on column, and count of product on values
other is pivot table power query
https://radacad.com/pivot-and-unpivot-with-power-bi
@Anonymous , 1 is matrix visual
seller on row, product on column, and count of product on values
other is pivot table power query
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 23 | |
| 12 | |
| 11 | |
| 9 | |
| 8 |