H
hmws
I have a range of cells (a3,c3,e3,a12,c12 etc) containing
variable cell references.
I would like to be able to go to/lookup a Target
Worksheet and enter the date in that cell.
The formula below returns now() in my target sheet.
sub enterdate()
Application.Goto Worksheets("Target") _
.Range(Worksheets("Source").Range("a3").Value), True
ActiveCell = Now()
End sub
Is there a way to speed this up by doing the other cells
in the source worksheet (ie c3,e3,a12,c12 etc) at the
same time?
Thank you
variable cell references.
I would like to be able to go to/lookup a Target
Worksheet and enter the date in that cell.
The formula below returns now() in my target sheet.
sub enterdate()
Application.Goto Worksheets("Target") _
.Range(Worksheets("Source").Range("a3").Value), True
ActiveCell = Now()
End sub
Is there a way to speed this up by doing the other cells
in the source worksheet (ie c3,e3,a12,c12 etc) at the
same time?
Thank you