mizenerman
MIS
Hello all. I find myself yet again needing your expertise.
I have a table that is pre-numbered in lieu of an autonumber process(because the autonumber won't work for our current patient records due to the fact that historical patient information is based on a manual numbering system). I would like the form used to enter data into the table to open to the next blank record on Open. The code I have thus far isn't working - no error message or anything. I've searched every forum and seems my issue is unique (or wrong). The code is:
Private Sub Form_Open(Cancel As Integer)
If IsNull(Me.Last_Name) Then
DoCmd.GoToRecord , , acNext
End If
End Sub
As usual any help provided is greatly appreciated.
I have a table that is pre-numbered in lieu of an autonumber process(because the autonumber won't work for our current patient records due to the fact that historical patient information is based on a manual numbering system). I would like the form used to enter data into the table to open to the next blank record on Open. The code I have thus far isn't working - no error message or anything. I've searched every forum and seems my issue is unique (or wrong). The code is:
Private Sub Form_Open(Cancel As Integer)
If IsNull(Me.Last_Name) Then
DoCmd.GoToRecord , , acNext
End If
End Sub
As usual any help provided is greatly appreciated.