Forum Discussion
dukeof3arl
2 years agoNew Member
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...
- 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> )
dukeof3arl
2 years agoNew Member
Greg_Deckler - can you give me a pointer on the first part? I'm unfamiliar with SWITCH or even how it would be used in this context.
Greg_Deckler
2 years agoCommunity Champion
dukeof3arl Sure:
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>
)