Skip to content

Commit

Permalink
Update 2024-08-19 - Xml Drill Down Chain.pq
Browse files Browse the repository at this point in the history
  • Loading branch information
ninmonkey authored Aug 19, 2024
1 parent c54353d commit b1aaf99
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion forumQuestions/pq/2024-08-19 - Xml Drill Down Chain.pq
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ let

Pairs = DrillPairs( Drill4 ),

#"Renamed Columns1" = Table.RenameColumns( Pairs,{{"Name", "Element"}}),
// add an index per each employee.item" record
#"Added Index" = Table.AddIndexColumn(Pairs, "Employee Index", 0, 1, Int64.Type),

#"Renamed Columns1" = Table.RenameColumns( #"Added Index", { { "Name", "Element" } }),

Pairs2 = DrillPairs( #"Renamed Columns1" ),

Expand Down

0 comments on commit b1aaf99

Please sign in to comment.