make a user form
put a box for each item you need; txtEmpNum, txtOrderNum, txtDate
1 combo box to choose IN or OUT.
a button to save.
date field holds both date and time 1/1/18 9:00 am
the button click event will save the record
Code:
public btnSave_click()
Sheets("Data").select
FindNextFreeRec
activecell.offset(0,0).value = txtEmpNum
activecell.offset(0,1).value = txtOrderNum
activecell.offset(0,2).value = txtDate
activecell.offset(0,3).value = cboIO
end sub
Public Sub FindNextFreeRec()
Range("A1").Select
Select Case True
Case ActiveCell.Value = ""
Case ActiveCell(1, 0).Value = ""
NextRow
Case Else
FarDown
NextRow
End Select
End Sub
Private Sub NextRow()
ActiveCell.Offset(1, 0).Select
End Sub
Sub FarDown()
Selection.End(xlDown).Select
End Sub