Hi all
I hope you can help me, I am making a formula type field that is date, in the formula I want it to calculate the second business day of each month, since I am going to use that field to trigger emails to customers, but no I find a way to calculate the second business day of each month
Thanks and Regards
Tania GarcÃa
6 Antworten
Next month :
IF ( MONTH(TODAY()) != 12,
CASE(WEEKDAY(DATE(YEAR(TODAY()),MONTH(TODAY())+1,2)),
1,DATE(YEAR(TODAY()),MONTH(TODAY())+1,3),
7,DATE(YEAR(TODAY()),MONTH(TODAY())+1,4),
DATE(YEAR(TODAY()),MONTH(TODAY())+1,2)) ),
CASE(WEEKDAY(DATE(YEAR(TODAY())+1,1,2)),
1,DATE(YEAR(TODAY())+1,1,3),
7,DATE(YEAR(TODAY())+1,1,4),
DATE(YEAR(TODAY())+1,1,2)) )
)