View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
4N 4N is offline
external usenet poster
 
Posts: 3
Default Copy Sheets to RAM and back

Hi,

I right now copy a sheet inside a "Variant" matrix using a command like

sheet.Cells(y,x) = matrix(y,x)
and back
matrix(y,x) = sheet.Cells(y,x)

Is there a way to copy the entire table at once or a command to stop
updating the sheet untill I'm done copying to speedup the process?

Thanks.