A family of Microsoft relational database management systems designed for ease of use.
I used this code in the AfterUpdate of my projectID box and it worked. but I had to change it a bit what I ended up going with is the following:
Private Sub ProjectID_AfterUpdate()
If Me.NewRecord Then
Me.SheetNum = Nz(DMax("sheetnum", "cutlist", "ProjectID=" & Me.ProjectID), 0) + 1
End If
End Sub
Thank-you for your help