View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
[email protected] metricsinstitute@gmail.com is offline
external usenet poster
 
Posts: 22
Default ADO left join count matches

Hello,

I'm using

Sql = "SELECT * FROM " & rs1 & " AS T1 LEFT JOIN (SELECT DISTINCTROW * FROM " & rs2 & ") AS T2 ON T1." & CommomVar & "=T2." & CommomVar
objRecordset.Open Sql, ObjConnection, adOpenForwardOnly

to match between 2 recordsets and it works well

How can I get the number of matches a record from T1 that has a counterpart in T2?

Thanks
Avi