How to turn Number to text

  • Thread starter Thread starter Guest
  • Start date Start date
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))))
 
If I understand you correctly you want to convert 123
to "123" use the cstr function ina update query
 
Back
Top