I create a Flow with a Decision element that will reference the Sports field. I have to list 40 picklist values. I have to replicate this in the flow several times. What is a more efficient way to reference these 40 fields multiple times throughout the Flow without having to add the one by one every time. This will take a long tie to do. Thanks!
2 réponses
Forum Ambassador Steven Trumble (Strum Consulting)
Do the same sports always go down the same decision paths? If so I'd write a formula with case function, something like:
CASE(record.sport,
'Basketball',1,
'cricket',1,
'cow tipping',2,
'football, 2,
3)
Then the decision element you just have different paths for value 1,2,3 etc