L
lmv
My PO number is
I would like the numbers to increase by 1 is there a way to do this.
I have this as a cmd button on the PO field now but would like it to do it
automatic... after choosing the Purchaser...is that possible?
Thanks!!
Private Sub cmdFillPO_Enter()
On Error GoTo Err_cmdFillPO_Click
Me.PurchaseOrderNumber = Me.ProjectID & "000" & Me.PurchaserID
Exit_cmdFillPO_Click:
Exit Sub
Err_cmdFillPO_Click:
MsgBox Err.Description
Resume Exit_cmdFillPO_Click
End Sub
first part is generated in the new record by the ProjID and last PurchaserIDLLLL000LL
I would like the numbers to increase by 1 is there a way to do this.
I have this as a cmd button on the PO field now but would like it to do it
automatic... after choosing the Purchaser...is that possible?
Thanks!!
Private Sub cmdFillPO_Enter()
On Error GoTo Err_cmdFillPO_Click
Me.PurchaseOrderNumber = Me.ProjectID & "000" & Me.PurchaserID
Exit_cmdFillPO_Click:
Exit Sub
Err_cmdFillPO_Click:
MsgBox Err.Description
Resume Exit_cmdFillPO_Click
End Sub