Robert1688
Agricultural
- Jan 13, 2007
- 14
I am creating a database which for inventory items stock. Is that possible to show the date and time in a cell of the same row where and when I input stock information?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 3 And IsNumeric(Target) Then Target(1, 2) = Date & Time
End Sub
yogia, I don't know how to use it, sorry