Skip to main content
I'm trying to create a formula field that would stamp the User that set Lead Status to Rejected?

 

 Error: Incorrect number of parameters for function 'TEXT()'. Expected 1, received 3

 

IF(TEXT(Status,"Sales Notified","NULL") ||

 

IF(TEXT(Status,"Accepted","NULL") ||

 

IF(TEXT(Status,"Rejected","LastModifiedById"),1)))
2 Antworten
  1. 13. Feb. 2018, 18:36

    Nah! You need a Workflow Rule + Field Update and Text Field to capture this.

    1. Evaluation Criteria: created and every time it's edited to subsequently meet the criteria [ 3RD OPTION ]
    2. Rule Criteria: criteria are met
    3. Criteria: 

      Lead Status equal to Rejected

    4. Add a Field Update
    5. Field to Update: Last Modified By (New Text Field)
    6. Use a Formula
    7. Formula - 

      $User.FirstName + ' ' + $User.LastName

    8. Don't forget to activate
0/9000