I'm trying to retrive all the info in a table that falls in the current month

this is what I tried

SELECT ClientData.Address, ClientData.Name, ClientData.LastWork, ClientData.NextScheduled, ClientData.CustomerType, ClientData.JobStatus
FROM ClientData
WHERE (((ClientData.NextScheduled) Like (ClientData.NextScheduled)=Date()))
ORDER BY ClientData.Address;

it doesn't work
I don't think I'm using =Date() the right way