I want to create a date on a report that adds ten weekdays to the current date and returns the next weekday(If the return date is a Saturday or Sunday-return the following Monday)
The expression:
=IIF(Weekday(DateAdd(“w”,11,Date()))=7,DateAdd(“w”,13,Date()),DateAdd(“w”,DateAdd(“w”,11,Date)))
will work fine and account for a Saturday returned date and move it to the next Monday.
The expression
=IIF(Weekday(DateAdd(“w”,11,Date()))=7,DateAdd(“w”,13,Date()),IIF(Weekday(DateAdd(“w”,22,Date()) =1,DateAdd(“w”,12,Date())=1,DateAdd(“w”w,12,Date())DateAdd(“w”,DateAdd(“w”,11,Date)))
Does not return anything. Does Access support nested IIF’s in Control Source expressions?
This seems like a complicated expression, is there an easier way?
Thanks for any help,
Carla