Hello,
We can't figure out how to do this can someone please assist.
Have the following query:
SELECT Tbl_Contacts.LName, Tbl_Contacts.FName, Tbl_Contacts.Zip, Tbl_Contacts.Email, Tbl_Contacts.DateCreated
FROM Tbl_Contacts;
The query results in all contacts on the database, which helps but we need to filter it for another purpose.
We need either:
- New contacts added to the database during the last seven days (based on Tbl_Contacts.DateCreated) and have it exported as an excel spreadsheet file on the desktop
- The ability to create a small form that allows us to enter two dates and have the query return the contacts only between the two entered dates. (based on Tbl_Contacts.DateCreated) and have it exported as an excel spreadsheet file on the desktop
Any help would be greatly appreciated, thank you.
We can't figure out how to do this can someone please assist.
Have the following query:
SELECT Tbl_Contacts.LName, Tbl_Contacts.FName, Tbl_Contacts.Zip, Tbl_Contacts.Email, Tbl_Contacts.DateCreated
FROM Tbl_Contacts;
The query results in all contacts on the database, which helps but we need to filter it for another purpose.
We need either:
- New contacts added to the database during the last seven days (based on Tbl_Contacts.DateCreated) and have it exported as an excel spreadsheet file on the desktop
- The ability to create a small form that allows us to enter two dates and have the query return the contacts only between the two entered dates. (based on Tbl_Contacts.DateCreated) and have it exported as an excel spreadsheet file on the desktop
Any help would be greatly appreciated, thank you.
Last edited: