Related:
- Cell input to call macro in adjacent cell
- How to input @ in laptop - Guide
- Lg tv change input name ✓ - Smart TV Forum
- Input phone password - Phones, PDA & GPS Forum
- If a cell has text then return value ✓ - Excel Forum
- Conditional formatting if cell contains text - Excel Forum
1 response
Hi Chris,
Implement this code on the worksheet you want it to work on (right click on the worksheet tab, click on view code):
Private Sub Worksheet_Change(ByVal Target As Range)
ActiveCell.Offset(-1, 1) = Time
End Sub
Whenever you put something in a cell and hit ENTER, the current system time is being put in the adjacent cell to the right.
NOTE that you have to confirm your entry by hitting ENTER and not use the arrows or TAB.
Best regards,
Trowa
Implement this code on the worksheet you want it to work on (right click on the worksheet tab, click on view code):
Private Sub Worksheet_Change(ByVal Target As Range)
ActiveCell.Offset(-1, 1) = Time
End Sub
Whenever you put something in a cell and hit ENTER, the current system time is being put in the adjacent cell to the right.
NOTE that you have to confirm your entry by hitting ENTER and not use the arrows or TAB.
Best regards,
Trowa