I want to combine two tables (csv and .xls) into one table and then join to a feature class. The two tables will have the same schema once I process them through a Attribute Manager and then I want to merge them together and write them out to a csv. I don't think the FeatureMerger or Joiner will really work because they need matching values while the records from these two tables are unique. I hope that makes sense and thanks for your help!
Page 1 / 1
If all you want is one output file with the data from both sources, you don't need any sort of Joiner/FeatureMerger.
You just have the two readers, plus whatever attribute manipulation necessary and connect both streams to the same writer feature type. Note in this case you don't want to use a dynamic writer.
Dude that worked great, thanks so much!