You need to sign in to do that
Don't have an account?
How to use an OR formula?
I have this formula where all 3 fields must be true. However, the last one Source__c should be OR, not AND. How to change this?
AND (ISPICKVAL ( Type, "Customer" ), ISPICKVAL ( Status__c , "New" ),
ISPICKVAL ( Source__c , "Webinar" ))
AND (ISPICKVAL ( Type, "Customer" ), ISPICKVAL ( Status__c , "New" ),
ISPICKVAL ( Source__c , "Webinar" ))
AND (ISPICKVAL ( Type, "Customer" ),
ISPICKVAL ( Status__c , "New" ),
OR
ISPICKVAL ( Source__c , "Webinar" ))
please try this:
OR( AND (ISPICKVAL ( Type, "Customer" ), ISPICKVAL ( Status__c , "New" )), ISPICKVAL ( Source__c , "Webinar" ))
Regards
Robert
(mindforce: http://www.mind-force.de)