Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Good afternoon,
The below query works when the string value has no apostriphies e.g jack wines, however it crashes over when it's Jack's wines. I had a play about with speech marks and apostrophies and I just can't get it right. I'm sure theres a quick fix, but i can't see it. Many thanks in advance, Marc Sub get_cust_all() Path = "D:\Documents and Settings\Marc\My Documents\testing.mdb" 'This part is the problem as its the apostrophies what_comp = "'" & frm_invoice.cmb_custname.Text & "'" Set db = Workspaces(0).OpenDatabase(Path, ReadOnly:=True) Set qry = db.CreateQueryDef("QRY_custdata") SQLstring = "SELECT * FROM tbl_customers_data WHERE CUST_NAME = " & what_comp & "" qry.Sql = SQLstring Set rs = qry.OpenRecordset() Sheets("Sales").Activate [a2].CopyFromRecordset rs db.QueryDefs.Delete "QRY_custdata" db.Close End sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Query from Access into Excel cause Access to go to read only | Excel Discussion (Misc queries) | |||
Access Form In An Access Report (SubForm) Question | Links and Linking in Excel | |||
Access data -work in Excel- save in Access | Excel Programming | |||
Getting Access Error Messages when running Access through Excel | Excel Programming | |||
Exporting to Excel and Apostrophies | Excel Programming |