Damn.... I may have to restructure my whole database. I need to have users input "project numbers" in one table which need to be formatted as such: 2009/033/REG. Than in a different form, all of the project numbers in the previous table are referenced in a combo box. In that form a "sample number" is entered in, in a text box. Once a sample number is added to a project number, the format needs to be: 2009/033/REG/02 or 2009/033/REG/22.... where there can be multiple "sample numbers" to a project number.
Right now I have the project number split into three fields on the first table and the entry form:
1. Project Year: 2009
2. Project Number: 033
3. Type: REG
and a query combines with "/" to make the final project number. In that query I can format project number: 33 to be "033". However following that same process to produce the final sample number: 2009/033/REG/02.... I referenced the query to get the final project and combine it with "/" and the sample number. But when it displays the full project number, it comes up as: 2009/33/REG/02, and doesn't keep the "000" format for the middle project number.
Maybe I need to combine the project number and sample number all at once with the correct formatting???