Skip to main content
Justin Thompson (Synergy) ha fatto una domanda in #Flow

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 risposte
  1. Steven Trumble (Strum Consulting) Forum Ambassador
    13 apr 2024, 12:08

    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

0/9000