• NetGeorge
  • NEWBIE
  • 0 Points
  • Member since 2007

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 2
    Replies
I was wondering if it is possible to have Close Date of newly created opportunity to be automatically set up for  90 days.
Thank you.
Kasia
All-
 
I am trying to require an entry from a custom object(CFM) I created based on the Stage of the Opportunity. I have entered the code below but it doesn't work. Anyone have any suggestions? Do validation not work for Look Ups?
 
AND (
 OR (
    ISPICKVAL( StageName, "Closed Won"),
    ISPICKVAL( StageName, "Formal discussions/Short-listed"),
    ISPICKVAL( StageName, "Committed Not Yet funded"),
    ISPICKVAL( StageName, "Committed Funded")),  
 LEN(CFM__c) = 0
)