This sounds simple.
I pull a recordset from a SQL database. The query for the recordset follows:
I now need to use this as a source to select data from. I've tried multiple ways of just dropping this into another query, but none of them return the data I need. Is there any way I can just simply use the above recordset as the source of another recordset??
Thanks,
dmh4ab
I pull a recordset from a SQL database. The query for the recordset follows:
Code:
SELECT tbl_RepairSummary.BasicPartNumber, tbl_RepairSummary.RoutingCode, tbl_RepairSummary.RevLevel, tbl_RepairSummary.RevDate, tbl_RepairSummary.PartName, tbl_RepairSummary.Summary, tbl_RepairSummary.Comments, tbl_RepairSummary.Preparedby, tbl_RepairSummary.SubsDocNumber, tbl_RepairSummary.NonHoneywellProduct, tbl_RtgDash.DashNo, tbl_RtgDash.ModToPN, tbl_RtgDash.ModToDash, tbl_RepairSummary.InProcess, tbl_RepairSummary.Filename, tbl_RepairSummary.Inactivated
FROM tbl_RepairSummary LEFT JOIN tbl_RtgDash ON (tbl_RepairSummary.RevLevel = tbl_RtgDash.RevLevel) AND (tbl_RepairSummary.RoutingCode = tbl_RtgDash.RoutingCode) AND (tbl_RepairSummary.BasicPartNumber = tbl_RtgDash.BasicPartNumber);
I now need to use this as a source to select data from. I've tried multiple ways of just dropping this into another query, but none of them return the data I need. Is there any way I can just simply use the above recordset as the source of another recordset??
Thanks,
dmh4ab