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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Variable as more then one value?

Status
Not open for further replies.

vb89

MIS
Aug 21, 2008
47
US
Can i have a variable as more then one value. ex:
dim tExSQL

tExSQL = tExSQL & " , total_ex AS A_col1, total_ex AS B_col1, total_ex AS C_col1 "

or could it be:

tExSQL = tExSQL & " , total_ex AS A_col1, AS B_col1, AS C_col1 "
 
Are you asking if you can assign more than one value to a variable at one time? If so, the answer is no.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top