T
tim johnson
I copied the SQL string directly from the Query pane and
need to format it to used in a procedure.
I would like the user to enter at least the first number
of the zip and to get all zip starting with than number.
I an having problem formatting the SQL into text.
Thanks
SELECT tblCityStZip.CityStZipID, tblCityStZip.Zip,
tblCityStZip.State, tblCityStZip.City, tblCityStZip.County
FROM tblCityStZip
WHERE (((tblCityStZip.Zip) Like [Forms]![frmLookupZip]!
[txtSearch] & "*"));
need to format it to used in a procedure.
I would like the user to enter at least the first number
of the zip and to get all zip starting with than number.
I an having problem formatting the SQL into text.
Thanks
SELECT tblCityStZip.CityStZipID, tblCityStZip.Zip,
tblCityStZip.State, tblCityStZip.City, tblCityStZip.County
FROM tblCityStZip
WHERE (((tblCityStZip.Zip) Like [Forms]![frmLookupZip]!
[txtSearch] & "*"));