You need to sign in to do that
Don't have an account?

make multiple fields required based on picklist value
hi,
for some reason validation rules just will not sink in for me.
i'm trying to make a set of 3 fields required based on a certain selection in a picklist. the 3 fileds are a number, phone and text. i tried a bunch of different things and nothing works properly.
thanks for your help!
thanks
AND( ISPICKVAL(Item_Type__c ,"Desk Reference Card (Custom)"), ISNULL( Account_Code__c ), ISNULL( Dedicated_800__c ), LEN( Caller_Data_Capture_Instructions__c )=0 )
AND(ISPICKVAL(TriggerField,"TriggerValue"),
OR (
ISNULL(ReqNumberField_1),
LEN(ReqPhoneField_2)=0,
LEN(ReqTextField_3)=0))