Skip to main content
Pierre-Olivier Pujol 님이 #Data Management에 질문했습니다
I need a validatio rule on leads : 

 

The lead sttus can't be update to Qualify when

 

Rate = none,

 

Country, FirstName and Lastname are empty,

 

Address or Phone number have a value.

 

Can someone help me ? I tried several functions and the is:

 

AND (

 

ISPICKVAL (Status, "Qualified") ,

 

NOT ( ISPICKVAL (Rating,"")),

 

NOT ( ISBLANK ( LastName ) ),

 

NOT ( ISBLANK ( FirstName ) ),

 

(OR(NOT ( ISBLANK (Email)), (NOT (ISBLANK (Phone))))

 

)

 

)

 

Thank you !!

 

PO
답변 6개
  1. 2013년 12월 3일 오후 3:39
    But personally I think you'd want something like this: 

     

    AND(

     

    TEXT(Status) = "Qualified" ,

     

    OR(

     

    ISBLANK(TEXT(Rating)),

     

    ISBLANK(LastName),

     

    ISBLANK(FirstName),

     

    ISBLANK(Country) ,

     

    ISBLANK(Email),

     

    ISBLANK(Phone)))
0/9000