function to find ASCII Value

M

MArio

What is the function to find the ASCII value for a
character in ACCESS like 'A' is 65/63 or what ever

Please help

thanks
mario
 
C

Cheryl Fischer

The Asc() function should do it:

From VBA Help, here is how it is used.

Dim MyNumber
MyNumber = Asc("A") ' Returns 65.
MyNumber = Asc("a") ' Returns 97.
MyNumber = Asc("Apple") ' Returns 65.
 

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

Top