I want to merge two csv files. The first looks like that: url;name;api. url fields contain 50 times the same url, name is empty and api fields contain 50 times the same api key. The second csv looks like that: url;name;api. url is empty, name contains 50 different names, api is empty.
I want to create one csv file: url;name;api with the information from both csv, so url and api contains the value from the first and name from the second csv.
so far i just create two csv input and hooked them with one csv output. The resulting csv has 100 records, 50 with null as name and 50 with null in url and api.
.