nambesal Posted July 29, 2002 Posted July 29, 2002 I have a database to track work requests. In the database, I have a calculation field named
Kundinger Posted July 29, 2002 Posted July 29, 2002 Hi 'Nambesal', You can do this but it requires a calc that will count the number of weeks between "Today" and "DateRequestEntered". The calc will also need to adjust for 'extra' weekend days. You will need to make the calc with a mix of 'dayofweek' and 'dayofyear' functions. For example: if dayofyear(today) = 200 if dayofyear(requestday) = 180 then total days = 20 20 divided by 7 = 2 weeks (4 weekend days) with 6 extra days if dayofweek(today) = 2 (monday) then day 2 minus 6 'extra' days equals -4 or wednesday of the previous week -- another words a negative result here means you spanned another weekend (2 weekend days) So... 4 weekend days plus 2 weekend days equals 6 weekend days total So... total days = 20 minus 6 weekend days equals 14 'work days' Let me know if you have trouble creating the calculation. I can create it for you and send you a sample file. Let me know. Oh, by the way... I would recommend staying AWAY from the "Today" function. I recommend utilizing the "Status(CurrentDate)" function instead. It will make your system run smoother, faster, and more efficiently. Hope this helps!!! Bob Kundinger
nambesal Posted July 30, 2002 Author Posted July 30, 2002 Bob, Thanks for the insight. I was able to get the calculation working. -NambeSal
Recommended Posts
This topic is 8222 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