S
Scott
I'm trying to change the RowSource of a combo box on the OnLoad event. I
need to concatenate the "userLast" and "userFirst" fields into "userName" as
seen in my code below.
How do I deal with the needed quotes that combine the "userLast" and
"userFirst" fields? Can someone correct my concatenation double quotes
below?
CODE ****************
sSQL = "SELECT userID, [userLast] & "", "" & [userFirst] AS userName" &
_
" FROM t_users"
Me.cboFind.RowSource = sSQL
need to concatenate the "userLast" and "userFirst" fields into "userName" as
seen in my code below.
How do I deal with the needed quotes that combine the "userLast" and
"userFirst" fields? Can someone correct my concatenation double quotes
below?
CODE ****************
sSQL = "SELECT userID, [userLast] & "", "" & [userFirst] AS userName" &
_
" FROM t_users"
Me.cboFind.RowSource = sSQL