Forum Discussion
Money
Helper I
3 years agoAssign a value [ID] based on the condition and same value [ID] should not assign again
Hi Team,Help me with the following situation π Match Conditions 3 1)There are two tables need to match from one ID to another ID based on the condition. In both table these two columns ( Line n...
lbendlin
Super User
3 years agoDid you know you can merge on more than one column?
let
Source = Table.NestedJoin(#"THOR Data", {"Line Segment", "Track Number"}, #"CWR Data", {"Line Segment", "Track Number"}, "CWR Data", JoinKind.FullOuter),
#"Expanded CWR Data" = Table.ExpandTableColumn(Source, "CWR Data", {"CWR ID", "CWR MP", "CWR Rail"}, {"CWR ID", "CWR MP", "CWR Rail"})
in
#"Expanded CWR Data"