Hi guys,
I have made a validation rule that i think should work but, i am getting the following error "Error: Field Competitor__c is a multi-select picklist field. Multi-select picklist fields are only supported in certain functions."
what i am trying to do is if one of my picklists values is selected called "Pass to Competitor" then i need my multi value picklist to become mandatory, i have also used a field dependency rule to link both but it doesn’t make it mandatory. the rule i have created is below but gives the above error, could any one point me in the right direction please.
Thanks
James
ISPICKVAL(Client_Plan__c, "Pass to Competitor") &&
AND(
NOT(ISPICKVAL(Competitor__c, " ")))
2 réponses
Here you go->
AND( ISPICKVAL( Picklist_1__c , "ValueSelected"), ( ISBLANK( Multi_Picklist_1__c )))