Solved
if and else if statement syntax for an expression in enrichment activity
Hi All,
Could anyone please help on "if and else if statement syntax" used in an expression in enrichment activity?
Thank you,
Rutuja Kelkar
Hi All,
Could anyone please help on "if and else if statement syntax" used in an expression in enrichment activity?
Thank you,
Rutuja Kelkar
Hello @rut7,
Let say you want to do the equivalent of :
if (@gender == 1){
logInfo('Male');
} else if (@gender == 2){
logInfo('Female');
} else {
logInfo('unknown');
}
That would be :
Iif(@gender = 1,'Male',Iif(@gender = 2,'Female' ,'unknown'))
Br,
Amine
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.