Something like this? I created another recordset and query
<%
'Dimension Variables
Dim adoCon 'Holds the database connection object
Dim rsService 'Holds the recordset for the records in the database
Dim rsPortfolio 'Holds the recordset for the records in the database
Dim strSQL 'Holds the SQL query
Dim strSQL2 'Holds the SQL query
'Create an ADO connection object
Set adoCon = Server.CreateObject("ADODB.Connection")
'Create an active connection to the connection object
adoCon.Open "DSN=rockenbach"
'Create an ADO recordset object
Set rsService = Server.CreateObject("ADODB.Recordset")
Set rsPortfolio = Server.CreateObject("ADODB.Recordset")
'Initialize the strSQL variable with an SQL query
strSQL = "SELECT servicesid, service FROM r_services ORDER BY sort asc"
strSQL = "SELECT * FROM portfolio"
'Open the recordset with SQL query
rsService.Open rsPortfolio.Open strSQL,strSQL2, adoCon
%>