• Josh Teran 2
  • NEWBIE
  • 0 Points
  • Member since 2021

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 5
    Replies
I'm having issues with this formula.
if WCT_Services_Start_Date__c) is blank and Today =30 is greather than Opportunity close date = 30, use Today = 30

 IF 
   (
    ISBLANK([Opportunity].WCT_Services_Start_Date__c), 
     
      {!TODAY()+30} >  [Opportunity].CloseDate + 30
     
     {!TODAY()+30}
   )
I'm having issues with this formula.
if WCT_Services_Start_Date__c) is blank and Today =30 is greather than Opportunity close date = 30, use Today = 30

 IF 
   (
    ISBLANK([Opportunity].WCT_Services_Start_Date__c), 
     
      {!TODAY()+30} >  [Opportunity].CloseDate + 30
     
     {!TODAY()+30}
   )