Hi all,
I have previously used these features to create an order summary report as below:
This table uses the syntax = Table.Group(#"Filtered Rows", {"Supplier", "Email Address"}, {{"Outstanding Purchase Orders", each Text.Combine([PO Number], "; "), type nullable text}})
The raw data that we are provided now breaks each order down into outstanding items so I would like to adapt this to include the items when creating this report. Ideally this would look something like the below:
The column in the raw data is named 'Part Description', but I cannot work out how to add the items column and then combine the parts to show multiples etc. I have tried to re-add the {{"Outstanding Purchase Orders", each Text.Combine([PO Number], "; ") section of the syntax and adjust this, but it doesnt work.
If anybody has any ideas how to make this work you would be my hero!
I have previously used these features to create an order summary report as below:
Customer | Email Address | Orders |
Joe Bloggs | 380370 | |
Jon Smith | 380139; 380004 | |
Alan Partridge | 380536; 380621 |
This table uses the syntax = Table.Group(#"Filtered Rows", {"Supplier", "Email Address"}, {{"Outstanding Purchase Orders", each Text.Combine([PO Number], "; "), type nullable text}})
The raw data that we are provided now breaks each order down into outstanding items so I would like to adapt this to include the items when creating this report. Ideally this would look something like the below:
Customer | Email Address | Orders | Items |
Joe Bloggs | 380370 | Part A; Part B; Part C | |
Jon Smith | 380139; 380004 | Part C; Part D x 2 | |
Alan Partridge | 380536; 380621 | Part A x 3 |
The column in the raw data is named 'Part Description', but I cannot work out how to add the items column and then combine the parts to show multiples etc. I have tried to re-add the {{"Outstanding Purchase Orders", each Text.Combine([PO Number], "; ") section of the syntax and adjust this, but it doesnt work.
If anybody has any ideas how to make this work you would be my hero!