I'm trying to populate the ms access caledar from a query with a calculated field here s the code from the query
I’ve not had any success getting calendar to populate from query (I’m just learning sql coding)
Any help would be appreciated
PS. Using Access 2003 on a Windows 7 machine.
Code:
SELECT HPContacts.FirstName, HPContacts.LastName, HPContacts.LastContactDate+[DaysBeforeNextContact] AS [Next Contact] FROM HPContacts WHERE ((([HPContacts].[LastContactDate]+[DaysBeforeNextContact]) Is Not Null)) ORDER BY HPContacts.LastContactDate+[DaysBeforeNextContact];
Any help would be appreciated
PS. Using Access 2003 on a Windows 7 machine.
Comment