Have a situation where I am getting data files that have 2 different but similar schemas. Trying to import both into same data set in Alteryx.
Created the following workflow.
Folder A: Data files conforming to schema A placed here.
Folder B: Data files conforming to schema B placed here.
Input tool A Imports files from folder A.
Resulting data set passed to select tool where certain fields are unchecked
Input tool B Imports files from folder B.
Resulting data set passed to select tool where certain fields are unchecked
At this point, those 2 data sets should have the same schema and are joined via Union tool.
Problem arises when there are no files in one of those folders. My intention was that the result of the union would be all the data from whatever files were imported, even if one of the input tools found no files, but when one data set fails to find input files, the downstream effect is the union fails.
Any suggestions?