Forum Discussion
gio1082
4 years agoHelper I
transpose row to columns
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
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")
2 Replies
- amitchandakSuper User
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")
- gio1082Helper I
Thank you!