Skip to main content
I dont know, but ask steve molis.

 

In the meantime, how do I fix this custom parent industry field I am trying to create.  I am trying to source a parent industry when a sub industries appears, and mark it "undefined" when there it is NULL.  I keep getting a "need a )" error.

 

IF

 

(ISBLANK(Industry),"Undefined",

 

IF(CONTAINS(

 

"Aerospace","Aerospace & Defense",

 

IF(CONTAINS(

 

"Auto Rental",Industry),"Automotive",

 

"Undefined")))
7 answers
  1. Dec 9, 2013, 9:41 PM
    First you sasss the Awesome SteveMo, then you ask for help....... Hmmmmmm.

     

    I added a few parens in key places:

     

    IF(ISBLANK(TEXT(Industry)),

     

         "Undefined",

     

         IF(CONTAINS(TEXT(Industry),"Aerospace"),"Aerospace & Defense",

     

         IF(CONTAINS(TEXT(Industry),"Auto Rental"),"Automotive", "Undefined")

     

         )

     

    )
0/9000