Solved Problem with Unpivot Data

sameer79

Member
Joined
Sep 19, 2022
Messages
34
Reaction score
0
Points
6
Excel Version(s)
Excel 2013
Hello All,
I am enclosing a sample file where I have two sheets: Schedule and Result

From Schedule Sheet I have created Result using Unpivot feature of Power Query but it is only showing the 'Parcels' Category
Other Categories are not coming on the Result Sheet.

What am I doing wrong?

TIA
 

Attachments

  • Schedule.xlsx
    54.1 KB · Views: 3
When you do unpivot, all the status with null value will disappear
You can replace all the null value to -, then status with - value won't disappear
Add a replace step before unpivot step as below that replace null to -
= Table.ReplaceValue(#"Removed Columns",null,"-",Replacer.ReplaceValue,List.Skip(Table.ColumnNames(#"Removed Columns"),6))
1681279836865.png
The enhance file is attached as well
 

Attachments

  • Schedule.xlsx
    231.2 KB · Views: 2
Last edited:
Back
Top