Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Update Numeric field to Text in Make Table Qry 2

Status
Not open for further replies.

JimStrand

Technical User
May 7, 2014
33
US
I have a make table query containing a 3 digit numeric field which I would like to update to text. How do I convert this to text in the Make Table Query? I've tried placing Format([numericField],000) in the property sheet of the field but this does not work. Any suggestions for handling this in the Make Table Query or in a subsequent update query if necessary Thank you.
 
What is your actual SQL code and which field should be converted ?

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
SELECT dbo_Monthly_Branch_Forecast.Branch INTO FCST_test
FROM dbo_Monthly_Branch_Forecast;
 
Or this:
SQL:
SELECT Format(Branch,'000') AS strBranch
INTO FCST_test
FROM dbo_Monthly_Branch_Forecast

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top