Forum Discussion
RandyPBI-BH
3 years agoNew Member
Unpivot only selected columns - Dymanic Names
Hello, I have Financial P&L Matrix, human interface friendly where Rows are the accounts , columns names are actual/(monthyear) or Forecast/(monthyear), and the values in cell are the finacial v...
- 3 years ago
Assuming romeveheader1 is not a typo (although removeheader1 seems more likely) and the first two columns are the only ones not unpivoting:
Table.Unpivot(#"Expanded romeveheader1", List.Skip(Table.ColumnNames(#"Expanded romeveheader1"),2),"Attribute","Value")
RandyPBI-BH
3 years agoNew Member
Thanks for the solution!