Forum Discussion

dukeof3arl's avatar
dukeof3arl
New Member
2 years ago
Solved

Help with converting IFS into a Custom Column

Hey everyone,   I'm having an issue translating an excel formula into a custom column.  I'll illustrate below.   Here is the table for reference.     Here is the excel formula:  =IFS(Targ...
  • Greg_Deckler's avatar
    Greg_Deckler
    2 years ago

    dukeof3arl ?? You can use SWITCH in a custom column.

    Column = 
    SWITCH( TRUE(), 
      <logical condition 1>, <result if true>,
      <logical condition 2>, <result if true>,
      <logical condition 3>, <result if true>,
      ... (as many conditions/result pairs as you want)
      <result if no conditions are true>
    )