Forum Discussion
Anonymous
1 year agoNot applicable
Pivot or Unpivot?
Hi All, I have in power query the following table Code Grp Name Qtr_Year 400 23 BGT Q1_2025 400 23 BGT Apple Now I want the below output Code Grp Name Qtr_Year Ctgy...
Anonymous
1 year agoNot applicable
pankajnamekar25 Thanks it works till Step 6 but
powerquery
CopyEdit
Text.Combine([Qtr_Year], " ") & " " & Text.Combine([Name], " ")
This merges the values from both columns into a single row.
- Remove unnecessary columns if needed.
- Click Close & Load to return the transformed data to Excel or Power BI
I get error or maybe I am missing something. Thanks
pankajnamekar25
1 year agoSuper User
Anonymous
try this
[Qtr_Year] & " " & [Name]
Thanks,
Pankaj
If this solution helps, please accept it and give a kudos (Like), it would be greatly appreciated.
- Anonymous1 year agoNot applicable
pankajnamekar25 Unfortunately something is wrong with the logic.
Code Grp Name Qtr_Year
400 23 BGT Q1_2025 400 23 BGT Apple 500 24 AVT Q3_2024
500 24 AVT Orange
Please refer to the above format and advise. Thanks