Skip to main content
I've tried this formula in both workflow rules and process builder, and keep getting the same syntax error that its missing a ')'. I've replaced the MID() section with "test" and it works perfectly so I know the issue is with this for some reason. Any help would be much apprectiated!

 

IF(

 

AND(

 

CONTAINS(Description, "First Name ="),

 

CONTAINS(Description, "Last Name =")),

 

MID(Description, 

 

FIND("First Name = ”, Description)+LEN("First Name = ”),

 

FIND(“Last Name = ”, Description) - FIND("First Name = ", Description) - LEN("First Name = ")), null)
2 Antworten
  1. 3. Apr. 2017, 02:02

    Hi Kristen,

    It looks good without any errors, can you try the same which worked for me?

    IF(

    AND(

    CONTAINS(Description, "First Name ="),

    CONTAINS(Description, "Last Name =")

    ),

    MID(Description,

    FIND("First Name = ", Description)+LEN("First Name = "),

    FIND("Last Name = ", Description) - FIND("First Name = ", Description) -

    LEN("First Name = ")), null)

     

     
0/9000