I started building a large template in excel several months ago when I was very new to VBA. Since then, I've started to pay more attention to making my macros more efficient, so I'm currently going over my old code and trying to rework it to make the whole file smaller and quicker.
My question is if I have a small block of code with only a couple lines like this:
Application.ActiveCell.FormulaR1C1 = 1
Application.ActiveCell.Offset(1, 0).Select
is it any more or less efficient to write it like this:
With Application.ActiveCell
.FormulaR1C1 = 1
.Offset(1, 0).Select
End With
Of course, I understand that the difference may be negligible for one small block of code, but if I have 50-100 similar to this throughout my workbook, is it worth it to go change them all?
Thank you,
JCC
Bookmarks