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
RajaramRajaram 

Solution: How to Process each choice from a multi-select choice individually..

There were few questions on how you may be able to process each choice from a multi-select choice field individually. So, instead of just providing a solution in words, I have a sample flow pack on github now. It shows you how you can build a flow to process each choice in a multi-select choices in a loop. It includes a utility class called ListHelper which is used in a loop to process each selected multi-select choice. The use case is to update the Service Date of individual line item for an opportunity depending on the prodcut code. The flow shows a simple example of adjusting the service data for 2 Product Codes - iPAD32 and iPHONE5B64 by adding 31 and 60 days respectively.

You can get the flow and the class here: https://github.com/raja-sfdc/FlowProcessMultiSelectChoices

 

Feedback is more than welcome!