Then you might have to have two Loops that parse through the entire recordset (both rs_special and rs_A55report)
Code:
While NOT rs_A55report.EOF
While NOT rs_special.EOF
If rs_A55report("Email")= rs_special("Email_Address") then
'Display the data from rs_A55report
End If
rs_special.MoveNext
Loop
rs_A55report.MoveNext
Loop
Hope that helps.
Cheers!
_________________________
- Vijay G
Strive for Perfection