How to turn Number to text

J

John Nurick

Hi Alex,

Paste the code into a module in your Access database. Then use a
calculated field like this in your query, where X is the name of the
numeric field:

TextValue: IIF(IsNull([X]), Null, English(CCur(Nz([X], 0))))
 
H

HOMI

If I understand you correctly you want to convert 123
to "123" use the cstr function ina update query
 

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