Hi @Ace12,
There are multiple ways you can combine multiple csv files into a single file in ACC.
1. Write js code and use File class methods, such as open, write, etc. Here you can create a copy of one of the files, open that copy in append mode [file.open("a")], open the second file in read mod...