The code still doesn't work. This is what I have now.
Private Sub Form_Current()
If Me.NewRecord Then
PO# = Nz(DMax("PO#", "Purchase Order Table")) + 1
End If
End Sub
So if more than one user will be using the form is there a way that I can make it so the PO# will be unique for each? Also...