0
Good afternoon
After a simple copy macro, to update a planning sheet, the excel file becomes progressively slower, both in the execution of the macro and in the normal workability (write, drag content etc). The macro works with many cells but when I did it didn’t take so long.
I already tried to eliminate the screenupdating and keep going. Some suggestions?
Sheets("F 002 PLAN-NAVE1").Select
Range("B5:WH372").Select
Selection.Copy
Sheets("Cálculos").Select
Range("C8").Select
ActiveSheet.Paste
Sheets("F 002 PLAN-NAVE2").Select
Range("B5:PY372").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Cálculos").Select
Range("WJ8").Select
ActiveSheet.Paste
Sheets("Parcial").Select
Application.CutCopyMode = False
Thanks in advance
Try to do less
SELECT
, this usually consume a lot of processing, something else, when you finish the action in a "Sheets", finish it, can reduce consumption as well.– Bruno Fonseca