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
 
Top