numeric conversion

A

Anne Lam

A text field of Table A is copied to a numeric (decimal)
field of Table B via an INSERT statement embeded with a
SELECT statement. How do I do the conversion in the
SELECT statement?

TableA: "1.1"
TableB: 1.1
 
S

Steve Schapel

Anne,

Use the Val() function, i.e. in your query it will be
Val([YourTextField])

- Steve Schapel, Microsoft Access MVP
 

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