indi visual
Member
Which is Faster?
Range("A1").Select
Range("A1").Activate
Application.Goto (ActiveWorkbook.Sheets(1).Range("A1"))
I am cleaning and condensing a lot multiple selects and redundant lines of code.
I read a few places here and there about avoiding select and activate if all possible.
Accuracy and speed is my aim with clean written code.
Does anyone have any tips for things to avoid that slow your code down the most?
Range("A1").Select
Range("A1").Activate
Application.Goto (ActiveWorkbook.Sheets(1).Range("A1"))
I am cleaning and condensing a lot multiple selects and redundant lines of code.
I read a few places here and there about avoiding select and activate if all possible.
Accuracy and speed is my aim with clean written code.
Does anyone have any tips for things to avoid that slow your code down the most?