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,
a have a lot of data in the following data form.
I want to transform it like this
How do I do it in the power query? thank you in advance
Solved! Go to Solution.
@gio1082 , first is select ID and unpivot other columns
https://radacad.com/pivot-and-unpivot-with-power-bi
rename column , create month column
create a new column Date
= Date.FromText("01-"&[Month]&"-2022")
@gio1082 , first is select ID and unpivot other columns
https://radacad.com/pivot-and-unpivot-with-power-bi
rename column , create month column
create a new column Date
= Date.FromText("01-"&[Month]&"-2022")
Thank you!