Forum Discussion
gio1082
Helper I
4 years agotranspose 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
- 4 years ago
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")
amitchandak
Super User
4 years agogio1082 , 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
Helper I
4 years agoThank you!