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

puzzle 1

Status
Not open for further replies.

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.
 
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

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top