M
Mike Wilson
Sorry to keep on with these type of questions.
Could anybody give me any ideas on how to get an Insert Into
to work
DoCmd.Run Sql "INSERT INTO ExportUPS ( OrderNo, Company, Contact, Add1,
Add2, Add3, Add4, PostCode, Country, TelNo, EMail )
SELECT Export.OrderNo, Export.Company, Export.Contact, Export.Add1,
Export.Add2, Export.Add3, Export.Add4, Export.PostCode, Export.Country,
Export.TelNo, Export.EMail
FROM Export WHERE (((Export.ShipMethod) Like "UPS****"))"
The problem I am having is to find a replacement for the Like "UPS****"
portion of the code.
The " are interpretated as the end of the SQL in the code whereas in the
the query they are there to qualify the like parameter.
Any assistance much appreciated
Thanks
Mike
Could anybody give me any ideas on how to get an Insert Into
to work
DoCmd.Run Sql "INSERT INTO ExportUPS ( OrderNo, Company, Contact, Add1,
Add2, Add3, Add4, PostCode, Country, TelNo, EMail )
SELECT Export.OrderNo, Export.Company, Export.Contact, Export.Add1,
Export.Add2, Export.Add3, Export.Add4, Export.PostCode, Export.Country,
Export.TelNo, Export.EMail
FROM Export WHERE (((Export.ShipMethod) Like "UPS****"))"
The problem I am having is to find a replacement for the Like "UPS****"
portion of the code.
The " are interpretated as the end of the SQL in the code whereas in the
the query they are there to qualify the like parameter.
Any assistance much appreciated
Thanks
Mike