Hi everyone,
I am trying to format my Number data type to look like this: 0001 / 2013 where "0000" is the prefix, 1 is the number and " / 2013" is the suffix.
Tablename: tblclients
Field Name: DelNoteNo
Data type: Number
Form
Control Name: DelNoteNo
Control Source: DelNoteNo
I am searching on this forum but I can't get it working.
On the Before Up date procedure i have:
DelNoteNo = Nz(DMax(DelNoteNo, "tblClients"), 0) +1
but its is giving "invalid use of Null "
What am I missing?