Related:
- Cell input to call macro in adjacent cell
- How to input @ in laptop - Guide
- If a cell has text then return value ✓ - Excel Forum
- Input phone lock code sos - Phones, PDA & GPS Forum
- Based on the cell values in cells b77 ✓ - Excel Forum
- If cell contains date then return value ✓ - Office Software 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