Convert a number column into a string column

Ben_Entrew

Registered User.
Local time
Today, 02:50
Joined
Dec 3, 2013
Messages
177
Hi all,

I want to convert a number column into a text column.
Number Column is called Customer.
Below I can't match to the other table containing the text column Customer No.
How can I convert columns in vba?

Thanks in advance.

Regards,
Ben


Code:
strSQL = "SELECT CALCULATED_Forecast_TNS.*, USEFUL.TRP_in_EUR " & _
         " FROM USEFUL INNER JOIN CALCULATED_Forecast_TNS ON (CALCULATED_Forecast_TNS.[Reference No] = USEFUL.[Reference No]) AND (USEFUL.[Customer] = CALCULATED_Forecast_TNS.[Customer NO])"

Set qdf = CurrentDb.CreateQueryDef("REPLACABLES", strSQL)

DoCmd.RunSQL "UPDATE REPLACABLES SET CALCULATED_Forecast_TNS.TRP_in_EUR = USEFUL.TRP_in_EUR"
 
Try:

...AND (CStr(USEFUL.[Customer]) = CALCULATED_Forecast_TNS.[Customer NO])"
 

Users who are viewing this thread

Back
Top Bottom