Newbies richpayne Posted September 19, 2000 Newbies Posted September 19, 2000 I am creating a Customer Followup database that generates future contact dates for salespersons based on a single Start Date. From the Start Date, we calculate 21 days, 3 months, 6 months, 12 months, 18 months, 24 months, etc. to get the future contact dates. How do I ensure that the calculated future dates do not fall on a Saturday or Sunday (when the salespersons are not in the office)? Sample: Date NP Start + 180
Kurt Knippel Posted September 19, 2000 Posted September 19, 2000 quote: Originally posted by richpayne: I am creating a Customer Followup database that generates future contact dates for salespersons based on a single Start Date. From the Start Date, we calculate 21 days, 3 months, 6 months, 12 months, 18 months, 24 months, etc. to get the future contact dates. How do I ensure that the calculated future dates do not fall on a Saturday or Sunday (when the salespersons are not in the office)? Sample: Date NP Start + 180 There is a way to eliminate the weekends from the calc. I am not familiar with it though. I am pretty sure you can find an example of it on John Mark's site at http://www.databasepros.com ------------------ =-=-=-=-=-=-=-=-=-=-=-=-= Kurt Knippel Consultant Database Resources mailto:[email protected] http://www.database-resources.com =-=-=-=-=-=-=-=-=-=-=-=-=
LiveOak Posted September 21, 2000 Posted September 21, 2000 A simple way is to use: Corrected Future Date(date) = Case( Day(Future Date) = 1, Future Date + 1, Day(Future Date) = 7, Future Date - 1, Future Date ) -bd [This message has been edited by LiveOak (edited September 20, 2000).]
Recommended Posts
This topic is 8829 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now