Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
Hi Experts,
I have the following data
| Shop ID | Date | Attendance | Image link |
| 1 | 2/12/2021 | 1 | img1 |
| 1 | 2/12/2021 | 1 | img2 |
| 1 | 2/12/2021 | 1 | img3 |
I want to convert this data into following foramt
| Shop ID | Date | Attendance | image link 1 | image link 2 | image link3 |
| 1 | 2/12/2021 | 1 | img1 | img2 | img3 |
Kindly suggest the possible way to do this.
Thanks
Solved! Go to Solution.
Hi @Minakshi ,
Step1:
Copy and paste table as table2.
Step2:
Remove other columns except image_link column in table2.
Step3:
transpose table2.
Step4:
Merge table1 and table2 as new and remove empty rows.
Pbix as attached.
Best Regards,
Jay
Hi @Minakshi ,
Step1:
Copy and paste table as table2.
Step2:
Remove other columns except image_link column in table2.
Step3:
transpose table2.
Step4:
Merge table1 and table2 as new and remove empty rows.
Pbix as attached.
Best Regards,
Jay
@Minakshi , Unpivot the data with Max
https://radacad.com/pivot-and-unpivot-with-power-bi
or in matrix visual use Img link as column and value(max)
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 23 | |
| 21 | |
| 17 | |
| 14 |
| User | Count |
|---|---|
| 58 | |
| 50 | |
| 37 | |
| 29 | |
| 24 |