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
76 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
397 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
968 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 …
2
votes
1answer
51 views

Programmatically update a folder full of Access97 files to Access2003

I have a folder full of 100-odd Access97 files. I need to update them all to Access2003. I could do it manually, but using VBA would probably be a lot faster. Does anyone that wo …
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") …