Forum Discussion
amirghaderi
Helper IV
2 years agoCombine two separate data flow to a new data flow
Is there anyway to combine data from two separate data flow (exactly the same structure) into one data flow. graphical view as below. Dataflow1 (data for the West), dataflow2 (Data for East), Datafl...
lbendlin
Super User
2 years agoYou need to append, not merge.
DF3 = DF1 & DF2
amirghaderi
Helper IV
2 years agoto append, I should bring table 1/2 from data flow 1/2 to data flow 3 and then append in data flow 3, meaning it will end up having data flow 3 with unnecessary table1/2 data. how to append at start without bringing table 1/2 to data flow 3 as standalone tables first?