Afternoon all,
I'm trying to get an invoice number field to auto generate the next number, keeping the format as "00000"
this is what I have, which gets the next number but drops the leading 0
Private Sub Customer_AfterUpdate()
If Len(Me.[InvoiceNumber] & vbNullString) = 0 Then...