function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
anil Kumaranil Kumar 

Flow Formula field not working for multi select field

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 
Danish HodaDanish Hoda
hi Anil,
Kindly refer the article to use it in the formula - 
https://help.salesforce.com/articleView?id=sf.tips_for_using_picklist_formula_fields.htm&type=5#picklists_and_msps
Emily Adamiec 13Emily Adamiec 13
@anil Kumar, 
Did you get this to work? took me a while to get picklist to work with the extra TEXT, but trying if(isblank(multipick)), FIrstmultipick, secondmultipick) is not working.  I see you can't use Text() with multipicks..