you are trying to equate two recordsets.
that means you want the same result-set in the two recordset..
you have already done this..

Set rs = cn.Execute(sSql)

you can repeate the same with different recordset..

Set rs1 = cn.Execute(sSql)