Forum Discussion

twofingertyper's avatar
twofingertyper
Helper III
1 year ago
Solved

Two 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...
  • lbendlin's avatar
    lbendlin
    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"