Is there a function to change hexadecimal to decimal similar to h.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to change a hexadecimal value to a decimal value. Excel has
hex$dec function and dec$hex function. MS Access only seems to have hex$
function. Is there a function that works in MS Access that switches a
hexadecimal value to a decimal value?
 
Just use the number.

Example in Immediate Window:
? &HFF

If you want to use a function, you could use Val().
 
Back
Top