I have an error on my VR.
"Error: Field Billing does not exist. Check spelling."
But as i use INCLUDES "billing" should be the text value from my multiselect picklist.
What do i miss ?
AND( INCLUDES( communication_type__c ,Billing), Email <> Account.Billing_eMail_Address__c )
Thanks in advance
best
2 risposte
Hi @Amin Ahcene,
Assuming the rest of the formula is correct, you need to wrap Billing in double quotes:
AND( INCLUDES( communication_type__c ,"Billing"), Email <> Account.Billing_eMail_Address__c )
Just as you did in your initial question! Thanks, Angus