Question : access sql conversion text to number

in access sql, how can I convert a text column that contains numbers into a number?

if col Amount is text and contains "45.03"

How can I convert it in the select statement into a number?

Answer : access sql conversion text to number

Select *, Val([YourTextField] As NumField
From tblYourTable

/gustav
Random Solutions  
 
programming4us programming4us