Tagged Questions
1
vote
1answer
95 views
Why is my applescrpt returning 2 msgbox while running the excel macro?
The following applescript seems to be running the macro twice as I am getting message box 2 times.
tell application "Microsoft Excel"
activate
run VB macro "Test.xlsx!Test()"
end tell
And the test ...
0
votes
1answer
3k views
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 ...