Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
FROM October 6th:
I need to reference the dated field and produce a letter (birthday, holiday, anniversary etc.) that can be mailed to the client.
FROM October 7th:
I am trying to produce letters and/or contact popups that will appear 7 days after the CreditPullDate and the DateClosed.
and...
The date field that I would want to reference is the CreditPullDate.
SELECT tblAgentPipeline.Id, tblAgentPipeline.SR, [FirstName] & " " & [lastname] AS ClientName, tblAgentPipeline.StreetName, tblAgentPipeline.CityName, tblAgentPipeline.StateName, tblAgentPipeline.ZipCode, tblAgentPipeline.CreditPullDate, tblAgentPipeline.DateClosed
FROM tblAgentPipeline
WHERE (((tblAgentPipeline.CreditPullDate)=Date()-7)) OR (((tblAgentPipeline.DateClosed)=Date()-7));