Hi All,
I was wondering if someone could help me figure out how to add two business days to today's date.
I have figured out the formula on how to add two business days...
IF DateTimeFormat(DateTimeAdd([Date],2,"days"),"%a") = "Sat" or DateTimeFormat(DateTimeAdd([Date],2,"days"),"%a") = "Sun" THEN DateTimeAdd([Date],4,"days") ELSE DateTimeAdd([Date],2,"days") ENDIF
... but I am struggling with incorporating bank holidays into my flow.
I have another input tool which will bring in all future bank holidays.
Any help would be appreciated.
Many thanks