number format

siculster

Registered User.
Local time
Today, 10:27
Joined
Jul 31, 2003
Messages
10
I have two fields, one named course code and one named requisition number. I have both of them in a text field:

=[Course code] & [Requisition no]

Requisition number is an autonumber with a format of "/000"

The problem is that if course code = 185 and requisition number = 010

it displays:

18510 instead of 185010

How can i format this in a form?

Thanks
 
If the course code is always three digits, then use this:
=[Course code] & Format([Requisition no],"000")
 
Thanks mate - i feel stupid!
 

Users who are viewing this thread

Back
Top Bottom