access - Prefix in field

  • Thread starter Thread starter Guest
  • Start date Start date
how do I set up field (autoumber) to have TD as prefix

You can't and you don't need to.

Whenever you need to show the Autonumber with the TD prefix,
concatenate it:
= "TD" & [NumberField]

There is no need to store the TDValue in the table.
 
fredg said:
how do I set up field (autoumber) to have TD as prefix

You can't and you don't need to.

Whenever you need to show the Autonumber with the TD prefix,
concatenate it:
= "TD" & [NumberField]

There is no need to store the TDValue in the table.

kewl...thanx
concatenate... word du jour
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top