EDIT *I copy and pasted from Google Sheets: Exporting to TSV however how do i get it to get the data only from a select few sheets and not every sheet? thank you *
I've tried looking online for answers, but I'm not that great at Script Editing yet,
I'm trying to make a Macro that when I click a button (already Made) it will export 7 sheets to TSV on my G Drive, preferably in a folder named with today's date (With the file named as the stores '1' '2' etc (name of the sheets).
When I tried the record Macro all I got was the following,
function DownloadOrders() {
var spreadsheet = SpreadsheetApp.getActive();
spreadsheet.setActiveSheet(spreadsheet.getSheetByName('1'), true);
spreadsheet.setActiveSheet(spreadsheet.getSheetByName('2'), true);
Any help would be greatly appreciated!