I have one specific problem while merging two files in n8n. so basically i want to merge two separate files but they should be align vertically means file 1 should be above file 2 and both data should not be clashed. file on contains pure text data. so whats the solution here ?
What is the error message (if any)?
Please share your workflow
(Select the nodes on your canvas and use the keyboard shortcuts CMD+C/CTRL+C and CMD+V/CTRL+V to copy and paste the workflow.)
master is file no.1
bifile is file no.2(which will be processed on below)
in new data i am adding new columns and dumping data from bifile
so after bifile is processed what i want to do is keep the master file data on top and below the processed data of file no.2
Which bit isn’t working though, I have given it a test and the workflow seems to work ok. If you are something more specific it would be handy to have those extra details.
@Jon ok sure. here is demo workflow i have prepared and i have 2 files also and one result file. so i want upper content and lower content vertically aligned by merging two file that is shown in image.so basically how i want to merge both file is in final result image.
That one is not the typical structured CSV file, so the easiest way to merge files would be to save them in the n8n and combine them with the bash command cat header.csv body.csv > combined.csv. Example attached. Example files are stored in the first node as a base64 string for observability (use the copy button under the workflow to copy it).