Skip to main content
A Currie (Imagine Finance) 님이 #Data Management에 질문했습니다
Hi, I was hoping someone might be able to help!

 

I have a standard object with some customer fields.

 

I have one custom field, complaint received date, when the user will select the date themselves.

 

I then have 2 fields which need formula input on:

 

-acknowledgement due field = complaint received date field + 3 working days

 

-response due field= complaint received date field + 8 weeks

 

Would anyone be able to help with the formula for these fields? I'm completely stuck!

 

Thanks!
답변 8개
  1. Eric Praud (Activ8 Solar Energies) Forum Ambassador
    2020년 7월 10일 오전 11:29
    Hi Ashley,

     

    Create formula fields returning dates like so:

     

    acknowledgement due field:

    IF(ISBLANK(complaint_received_date__c),NULL,

    complaint_received_date__c+

    CASE(WEEKDAY(complaint_received_date__c),1,3,2,3,3,3,7,4,5))

     

    response due field:

    complaint_received_date__c+56

     

     
0/9000