View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
eric wolfgang eric wolfgang is offline
external usenet poster
 
Posts: 1
Default run out of memort

I use this code in a program I wrote and usually bombs out
the program with an error message the memory is running
low.
for pp = 1 to 30
Workbooks(datawkbk).Sheets(pp).Range("q:q").Copy Workbooks
("history.xls").Sheets(pp).Range("a:a")
next pp

Any ideas on how use a variation of copying a columns from
1 workbook to another will be appreciated.
thanks, Eric