• Emily Adamiec 13
  • NEWBIE
  • 0 Points
  • Member since 2020

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

I have created below formula field in the flow for field assignment for screen component in flow. Formula is working fine for picklist field but formula is not working for multi select picklist.  

Picklist formula :  IF((TEXT({!LanguageChoice})==NULL), TEXT({!Get_Account.Language__c}),TEXT({!LanguageChoice}))  

Multiselect Picklist formula: IF((TEXT({!VehicleChoice})==NULL), TEXT({!Get_Account.Vehicle__c}),TEXT({!VehicleChoice}))

Thanks,
Anil Kumar 
We have the Salesforce to Slack integration set up using webhooks that was outlined in this post (https://developer.salesforce.com/blogs/developer-relations/2016/05/slack-salesforce-integration.html) and this post (http://coenraets.org/blog/2016/01/slack-salesforce-integration/#targetText=A%20Webhook%20is%20an%20endpoint,text%20and%20some%20other%20options.). This is working for opportunity related information, but I am now tasked with adding the products on the opportuntiy to the Slack post.

I am trying to figure out how to update the apex class with opportunity product information (product name and sales price). Not sure if this should be in the class itself or in the process builder.

Thank you for any assistance on this!