Apr 2, 2001 #1 Deadline Programmer Feb 28, 2001 367 US Hi, How to get a comma separated list of a particular column alone from a Recordset that has been populated already ? Will GetString help ? Thanks in advance. RR.
Hi, How to get a comma separated list of a particular column alone from a Recordset that has been populated already ? Will GetString help ? Thanks in advance. RR.
Apr 2, 2001 1 #2 Swany Programmer Feb 19, 2001 208 US do while not rs.eof csl = csl & rs("column_to_use" & "," rs.movenext loop csl = right(csl, len(csl) -1)) 'get rid of extraneous comma Upvote 0 Downvote
do while not rs.eof csl = csl & rs("column_to_use" & "," rs.movenext loop csl = right(csl, len(csl) -1)) 'get rid of extraneous comma