What am I doing wrong? This is my sql statement from the query:
SELECT TOP 25 tblMain.ClientID, tblMain.FirstName, tblMain.Organization, tblMain.Email, tblMain.OnSendList
FROM tblMain
WHERE ((Not (tblMain.Email) Is Null));
And this is my SQL statement in my vba code:
Dim sSql As String
sSql =...