In my approach database I need a field to add on 13 working days to the date the record was made. I know that there is a workday function in lotus 123 but it does not appear in approach. Any ideas what I can do??
Use a calculated field and the DayOfWeek() to get the number of the day in the week (Sunday is 1, Monday is 2, etc). Then you can figure out the number of weekends to include in the calculation.
DOW = DayOfWeek(yourdatefieldname)
NewDate = yourdatefieldname + If(DOW = 7,5,If(DOW = 1 or DOW = 2 or DOW = 3,4,6))
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.