I need to copy all the cells from one sheet to another sheet in a different workbook.
I'm currently using:
originSheet.cells.copy destination:=destSheet.range("a1")
but it takes several minutes to execute. I guess a faster solution would be to copy the entire sheet but then I would have to change all my formulas on the destination workbook.
Can you help me speed up this code?