I am using a VBA containing a lot of chunks similar to the following:
Range("D82").Select
Selection.Copy
Range("L" & i + 4).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
I am wondering whether this the fastest way to do such tasks. Is there a way to speed up by using different coding?