AppleScript to combine multiple Excel files into a single worksheet
问题 I am not an expert in AppleScript, so I've ben trying to find an example of AppleScript code that can successfully process a batch of Excel files (each one with a single worksheet), copying the content of each one into a single destination sheet. This is the pseudo code that I had in mind: pick source folder with Excel files; pick destination Excel file; for each file within the source folder: copy data from default sheet; paste data into destination sheet's first unused row end This is the