Forum Discussion
twofingertyper
Helper III
1 year agoTwo tables, differing data - merge, append new or other?
Hi all, I have two tables - one that runs for a longer period (AllSales) and one that is shorter, but captures cancelled sales (SalesStatus). They do not have identical columns, but both have a...
- 1 year ago
let Source = #"All Sales" & #"Sales Status", #"Grouped Rows" = Table.Group(Source, {"SalesOwnerID", "Date", "Status", "ProductID", "UniqueID"}, {{"Value", each List.Sum([Value]), type nullable number}}) in #"Grouped Rows"
lbendlin
Super User
1 year agolet
Source = #"All Sales" & #"Sales Status",
#"Grouped Rows" = Table.Group(Source, {"SalesOwnerID", "Date", "Status", "ProductID", "UniqueID"}, {{"Value", each List.Sum([Value]), type nullable number}})
in
#"Grouped Rows"
twofingertyper
Helper III
1 year agoThanks - that works, I did wonder about the impact of grouping larger data chunks, but this will work for now I think.