J joe31709 Registered User. Local time Today, 13:44 Joined May 12, 2003 Messages 54 Sep 3, 2003 #1 I want to build a query that when I put in a date like today for example it will go back 2 weeks and list all the infom from a table. any ideas
I want to build a query that when I put in a date like today for example it will go back 2 weeks and list all the infom from a table. any ideas
N namliam The Mailman - AWF VIP Local time Today, 19:44 Joined Aug 11, 2003 Messages 11,685 Sep 3, 2003 #2 Use: Between #[Give a date]# -14 and #[Give a date]# This will allow the user to enter the date. I fyou want to always use todays date then use:Between date() -14 and date() Regards The Mailman
Use: Between #[Give a date]# -14 and #[Give a date]# This will allow the user to enter the date. I fyou want to always use todays date then use:Between date() -14 and date() Regards The Mailman
J joe31709 Registered User. Local time Today, 13:44 Joined May 12, 2003 Messages 54 Sep 3, 2003 #3 Thank you,