Asc("A") = 65
Asc("B") = 66
...
Asc("Z") = 90
To show the letter, you could use:
Chr(65) = "A"
Chr(66) = "B"
...
Chr(90) = "Z"
Eg:
YourOrder: =Format$([OrderNum], "00000") & Chr([OrderLetterAsc])
If you create a query ordered by the letter (Asc number) and then by the
order number (five-digit), it will be easy to manage it.
Anyway, there are "n" possible solutions.
Luiz Cláudio C. V. Rocha
São Paulo - Brazil
"David A. Hersher" <hers...@wilkshire.net> escreveu na mensagem
news:%23Bp1ecZ...@TK2MSFTNGP09.phx.gbl...