Just Power Query 
// Table1
let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
Type = Table.TransformColumnTypes(Source,{{"Total", Int64.Type}, {"Invoice Business Unit", type text}, {"Project Number", type text}}),
Idx = Table.AddIndexColumn(Type, "Index", 1, 1),
Distinct = Table.Distinct(Idx, Table.ColumnNames(Type)),
Asc = Table.Sort(Distinct,{{"Total", Order.Ascending}}),
DDistinct = Table.Distinct(Asc, {"Total", "Invoice Business Unit"}),
DDDistinct = Table.Distinct(DDistinct, {"Invoice Business Unit", "Project Number"}),
TSRAsc = Table.Sort(DDDistinct,{{"Index", Order.Ascending}}),
RC = Table.RemoveColumns(TSRAsc,{"Index"})
in
RC
explanation:
- let:
This keyword indicates the start of the Power Query expression. - Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content]:
This line assigns the variable Source to the content of a table named "Table1" in the current workbook. It assumes that there is a table named "Table1" in the Excel workbook where the code is running. - Type = Table.TransformColumnTypes(Source,{{"Total", Int64.Type}, {"Invoice Business Unit", type text}, {"Project Number", type text}}):
This line creates a new variable Type by transforming the column types of the Source table. It specifies that the "Total" column should be of type Int64, and the "Invoice Business Unit" and "Project Number" columns should be of type text. - Idx = Table.AddIndexColumn(Type, "Index", 1, 1):
This line adds a new column named "Index" to the Type table. The "Index" column contains incremental values starting from 1. - Distinct = Table.Distinct(Idx, Table.ColumnNames(Type)):
This line creates a new variable Distinct by removing duplicate rows from the Idx table based on all columns of the Type table. - Asc = Table.Sort(Distinct,{{"Total", Order.Ascending}}):
This line sorts the Distinct table in ascending order based on the "Total" column. - DDistinct = Table.Distinct(Asc, {"Total", "Invoice Business Unit"}):
This line creates a new variable DDistinct by removing duplicate rows from the Asc table based on the "Total" and "Invoice Business Unit" columns. - DDDistinct = Table.Distinct(DDistinct, {"Invoice Business Unit", "Project Number"}):
This line further removes duplicate rows from the DDistinct table based on the "Invoice Business Unit" and "Project Number" columns. - TSRAsc = Table.Sort(DDDistinct,{{"Index", Order.Ascending}}):
This line sorts the DDDistinct table in ascending order based on the "Index" column. - RC = Table.RemoveColumns(TSRAsc,{"Index"}):
This line creates a new variable RC by removing the "Index" column from the TSRAsc table. - in RC:
This line indicates the end of the Power Query expression and returns the RC table as the result.
Overall, the code performs several transformations on the initial data source (Source), including type conversion, removing duplicates, adding an index column, and sorting the data based on specific columns. The final result is a table (RC) with the desired transformations applied.
Total |
Invoice Business Unit |
Project Number |
0 |
Department A |
Customer 1234 |
0 |
Department B |
Customer 1234 |
89 |
Department B |
Customer 2345 |
89 |
Department C |
Customer 0812 |
0 |
Department D |
Customer 0812 |
Bookmarks