Skip to main content
Trying to create a validation rule where an opportunity can only be created through a lead conversion if the opp type field= New, Upsell.  Here's my rule:

 

AND(

 

ISPICKVAL(Type , "New", Upsell"),AND( Converted_from_Lead__c = false)

 

It's not working... Help?
9 respostas
  1. 12 de jan. de 2017, 21:17
    My bad, I though you wanted it on Renewals, here you go

     

     

    AND(

    ISNEW(),

    CASE(Type,

    "New" , 1 ,

    "Upsell" , 1 ,

    0 ) = 1 ,

    Converted_from_Lead__c = FALSE

    )

     

     
0/9000