At work we have an Excel VBA tool that we use on a regular basis to generate reports. Runtime can be quite long due to the number of reports we have to generate. Typically the way we cut down on runtime is we split up the report list into four groups, made four copies of the reporting tool, then ran group 1 on server 1 using copy 1, group 2 on server 2 using copy 2, etc so that they were all running simultaneously.
Wondering if it's possible to run them all on one server instead of four? I.e. have VBA start one tool, then start another in another instance, and so on. It seems like when I try to do it, only one can run at a time (although the multiple instances open fine and all the tools will run, just not simultaneously. Let me know if this isn't clear, thanks!