displaying multiple values with .FIELDS adodb

Posted by every_answer_gets_a_point on Stack Overflow See other posts from Stack Overflow or by every_answer_gets_a_point
Published on 2010-05-14T16:26:22Z Indexed on 2010/05/14 16:34 UTC
Read the original article Hit count: 161

Filed under:
|
|
|
|

i am getting some data:

rs.Filter = "datapath='" + dpath + "' and analystname='" + aname + "' and reportname='" + rname + "' and batchstate='" + bstate + "'"
If Not rs.EOF Then
    MsgBox rs.Fields("rowid")
End If

if the rs.filter returns multiple records, how do i get rs.fields("rowid") to give me multiple rowid values?

© Stack Overflow or respective owner

Related posts about excel

Related posts about vba