Import multiple CSV files to a single sheet

I have several CSV files (small in size) that I want to import to a single sheet. These CSV files all have the same layout, but have financial data from multiple years/months. I am trying to avoid importing and copying them from individual spreadsheets. My goal is to just import the data one month below the next and then parse the fields in to usable data. Any help would be appreciated. Thanks.

1 Like

If they all are in the same folder?
in linux-terminal

cd /path/to/the/folder
cat *.csv  >> all_together.csv

and import »all_together.csv« the usual way

3 Likes