Search Results

1
vote
2answers
1k views

Exporting an MS Excel 2003 workbook to PDF via VBA

I have an Excel 2003 workbook that contains a macro to copy certain of its sheets across to a new workbook, then save and close the new workbook. It does this several dozen times, with slightly di …
0
votes
3answers
77 views

What is a good way to create a variably sized group to be looped over in Excel 2003?

I have a procedure that is run for a lot of items, skipping over certain items who don't meet a criterion. However, I then go back and run it for some of the individuals who were missed in the fir …
0
votes
3answers
400 views

Copy worksheet macro stops doing anything when the workbook hits 50 worksheets

Hey all I have a workbook that has a number of cover sheets and then a bunch of sheets at the back that are contain a few graphs. The graph pages are created by copy-pasting one sheet ("Ma …
0
votes
1answer
979 views

Copy Excel worksheets, macros, and graphs from one workbook to another, moving links to the new workbook

I have an Excel workbook with a number of features: One main user-facing sheet One summary sheet based on the user-facing sheet's data A number of graphs based on th …
1
vote
2answers
250 views

Loop through each row of a range in Excel

This is one of those things that I'm sure there's a built-in function for (and I may well have been told it in the past), but I'm scratching my head to remember it. How do I loop through e …
0
votes

Copy worksheet macro stops doing anything when the workbook hits 50 worksheets

Based on Lunatik's answer, I changed oBook.Sheets("MasterFormat").Copy After:=Sheets(j) to oBook.Sheets("MasterFormat").Copy After:=oBook.Sheets(j), which seemed to fix th …
0
votes

What is a good way to create a variably sized group to be looped over in Excel 2003?

My eventual solution was to import the list as an external data query that I then named nicely and referenced as a range. So: For each item in Sheets("Sheet1").Range("Range1") …