Skip to main content
Amin Ahcene ha fatto una domanda in #Formulas

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
  1. 24 ago 2022, 08:48

    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

0/9000