Hi,
I am dynamically changing my Query using VBA Code, and I came accross a problem, which I hope you can help out on:
my SQL need to read:
select Apples & "/" & Pears as Fruits from Table
NOw in my code I have
dim StrSQL as string
strSQL = "select Apples & "/" & Pears as Fruits from Table"
Naturally, the speech marks get in each others way.How do I get around this???
I am dynamically changing my Query using VBA Code, and I came accross a problem, which I hope you can help out on:
my SQL need to read:
select Apples & "/" & Pears as Fruits from Table
NOw in my code I have
dim StrSQL as string
strSQL = "select Apples & "/" & Pears as Fruits from Table"
Naturally, the speech marks get in each others way.How do I get around this???