• sni
  • NEWBIE
  • 0 Points
  • Member since 2020
  • Freaks4U

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 1
    Replies
Hi,

I have a custom multi-select picklist which contains some languages like "German" "English" and "French" on Contact.
Now, I need to pass the selected languages to my formula for a button/link URL on Opportunities.
This is my test code:
{!IF(INCLUDES(Contact.Language__c, "German"), "10202", "")
&IF(INCLUDES(Contact.Language__c, "English"), "10201", "")
&IF(ISBLANK(Contact.Language__c), "10204", "")}
But the INCLUDES always return false and in this case the empty string.
I tested mutliple combinations in the picklist.
Btw if I just let it print out "Contact.Language__c", it works fine.

What am I missing?

Thanks
  • November 30, 2020
  • Like
  • 0
Hi,

I have a custom multi-select picklist which contains some languages like "German" "English" and "French" on Contact.
Now, I need to pass the selected languages to my formula for a button/link URL on Opportunities.
This is my test code:
{!IF(INCLUDES(Contact.Language__c, "German"), "10202", "")
&IF(INCLUDES(Contact.Language__c, "English"), "10201", "")
&IF(ISBLANK(Contact.Language__c), "10204", "")}
But the INCLUDES always return false and in this case the empty string.
I tested mutliple combinations in the picklist.
Btw if I just let it print out "Contact.Language__c", it works fine.

What am I missing?

Thanks
  • November 30, 2020
  • Like
  • 0