AC PORTA VIA
Board Regular
- Joined
- Apr 9, 2016
- Messages
- 235
- Office Version
- 365
- Platform
- Windows
Hi, i am having hard time to understand active cell offset
Why does the below code offset to different row on different computers
if My active cell is E3 above code Should put date in K3
However on the one computer it does on the other it selects K4
i am running office 2007 on both computers
Than you!
Why does the below code offset to different row on different computers
Code:
If Not Intersect(Target, Range("C1:C1000")) Is Nothing Then
Application.EnableEvents = False
Cells(ActiveCell.Row - 0, 11) = Now
However on the one computer it does on the other it selects K4
i am running office 2007 on both computers
Than you!