In my database today's date looks like this
Between Date() And Date()+1
This shows me today with all of the scheduled times.
How do I make it give me only tomorrow and only the next day
I tried Between Date() And Date()+2 it gave me today and tomorrow. I want to seperate today and tomorrow.
If today is Friday 8/28/2009 I want only tomorrow Saturday 8/29/2009
I have this that shows me current week
DatePart("ww", [SalesDate]) = DatePart("ww", Date()) and Year( [SalesDate]) = Year(Date())
Like say I only want Thursday of the current week and today is Monday.
help
Tina
Between Date() And Date()+1
This shows me today with all of the scheduled times.
How do I make it give me only tomorrow and only the next day
I tried Between Date() And Date()+2 it gave me today and tomorrow. I want to seperate today and tomorrow.
If today is Friday 8/28/2009 I want only tomorrow Saturday 8/29/2009
I have this that shows me current week
DatePart("ww", [SalesDate]) = DatePart("ww", Date()) and Year( [SalesDate]) = Year(Date())
Like say I only want Thursday of the current week and today is Monday.
help
Tina