Nível 1
Nível 2
Faça login na Comunidade
Saiba mais
Faça logon para exibir todas as medalhas
Expandir minha barra de realizações na Comunidade.
Esta conversa foi bloqueada devido à inatividade. Crie uma nova publicação.
I know the tedious, endless, nested-if solution to this, but wondered if there is an easier way.
Does WF have a construct/conditional for calculated fiends that would do this:
IF fieldName is ANYOF (A, B, C) then output "Cat"
ELSEIF fieldName is ANYOF (X, Y, Z) then output "Ferret"
ELSEIF fieldName is ANYOF (P, Q, R) then output "Pygmie Bunny"
Solucionado! Ir para a Solução.
Hi Kevin,
Sounds like a good fit for IFIN:
IFIN(fieldName,A, B, C,”Cat”,
IFIN(fieldName,X, Y, Z,"Ferret",
IFIN(fieldName,P, Q, R,"Pygmie Bunny",
“Red Herring”)))
Regards,
Doug
Ver solução na publicação original
Perfect, just what I was hoping for!
Visualizações
Curtida
respostas