Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Quick quotation mark question

Status
Not open for further replies.

JasonPurdueEE

Technical User
May 21, 2002
131
US
can somebody help me out with my quotation marks in this line? strSQL1, strSQL2, and so on are all strings. I want OverallSQLstr to be the string that is formed by the combination of strSQL1 through strSQL5 WITH the "(" brackets in it. How do I get the quotation marks set up correctly on this line?

OverallSQLstr = "(strSQL1(strSQL2(strSQL3(strSQL4(strSQL5)))))"

Thanks in advance.

JASON

 
nevermind, I think I got it.

OverallSQLstr = "(" & strSQL1 & "(" & strSQL2 & "(" & strSQL3 & "(" & strSQL4 & "(" & strSQL5 & ")))))"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top