Dear Friends
I am trying to make dynamic query. I have a sub saying
strSQL1="Select * from qryProduct1"
strSQL2="Select * from qryProduct2"
strSQL3="Select * from qryProduct3"
for t=1 to 3
next t
But when I run it, it does not know the resulted strSQL0.
How do I need to concatenate to make that run as query.
Thanks in advance.
Sai KH
I am trying to make dynamic query. I have a sub saying
strSQL1="Select * from qryProduct1"
strSQL2="Select * from qryProduct2"
strSQL3="Select * from qryProduct3"
for t=1 to 3
strSQL0=strSQL & t
do something
next t
But when I run it, it does not know the resulted strSQL0.
How do I need to concatenate to make that run as query.
Thanks in advance.
Sai KH