Currently to calculate current business day excluding weekends, I am using the formula (retrieved from Salesforce Help) given below:
(
( FLOOR ( ( TODAY() - DATE (1900,01,01) ) / 7 ) *5 )
+ MIN ( 5, MOD ( TODAY() - DATE (1900,01,01), 7 ) +1 )
) -
(
( FLOOR ( ( DATE(YEAR(TODAY()),MONTH(TODAY()),1) - DATE (1900,01,01) ) / 7 ) *5 )
+ MIN ( 5, MOD ( DATE(YEAR(TODAY()),MONTH(TODAY()),1) - DATE (1900,01,01), 7 ) )
)
So now, I request for the possible solutions (both Configuration and customization way). Configuration way is preferred here.
Waiting for your response.Thanks in Advance.Prabhata2 answers
Hi Prabhata,Could you post your solution if you had figured out how to include holidays in determining the business day?ThanksAsha