the problem is a wrong
VB syntax, not in the select statement. If that was a case, you should have got a database error when running the code.
There is a ' sign before the last & that needs to be removed :
'& " AND Date_01 < '01/01/2006'"
I would write like this, enclosing rsActive within ''
mysql = _
"SELECT * FROM dbo.Member_Custom_Acct where Member_ID = '" & _
rsActive("Member_ID") & _
"' AND Date_01 < '01/01/2006'"
Marco