Aug 22, 2008 #1 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 "
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 "
Aug 22, 2008 #2 jbenson001 Programmer Jan 7, 2004 8,172 US Are you asking if you can assign more than one value to a variable at one time? If so, the answer is no. Upvote 0 Downvote
Are you asking if you can assign more than one value to a variable at one time? If so, the answer is no.