Skip to main content
I want a Date & Time Value to default to Now + 3 Business Days. 

 

This formula will not work as this is the default value and CreatedDate cannot be used: 

 

CASE(MOD(DATEVALUE(CreatedDate) - DATE( 1900, 1, 7 ), 7 ),

 

  0, CreatedDate + 1 + 2, 

 

  4, CreatedDate + 2 + 2, 

 

  5, CreatedDate + 2 + 2, 

 

  6, CreatedDate + 2 + 2,

 

  CreatedDate + 2

 

)

 

This formula does not consider business days: NOW() + 72/24

 

Can someone help? 
12 respuestas
  1. 5 jun 2017, 21:04
    Your Field Update Formula would be something like this:

     

     

    TODAY() +

    CASE(

    MOD( TODAY() - DATE( 1900, 1, 7 ), 7 ),

    3, (2 + 3),

    4, (2 + 3),

    5, (2 + 3),

    6, (1 + 3),

    3)

     

     
0/9000