I need to run an automated process that creates a fairly large number of PowerPoint files using an Excel template to generate the required tables and charts, which are pasted into PowerPoint as images.
The process takes quite a while and I want to be able to do other things while it is running so I am trying to avoid using cut paste so the clipboard can be used for other things while the process is running. If I use cut and paste in the VBA code the global clipboard doesn't work while it is running.
I managed to avoid using the clipboard for charts by exporting the charts to bitmap files. However for there doesn't seem to be such a method for ranges of cells. Is there a way to solve the problem.