Related:
- Cell input to call macro in adjacent cell
- How to input @ in laptop - Guide
- Input phone lock code - Phones, PDA & GPS Forum
- Based on the cell values in cells b77 ✓ - Excel Forum
- Insert a function in cell b2 to display the current date from your system. ✓ - Excel Forum
- Cell phone codes - Guide
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