Hi All
I need some guidance on Multiple if statements i currently have in Tableau but need to bring the calculation in to Alteryx.
below is an example of the syntax:
if [Account ID]='1'
or [Account ID]='2'
or [Account ID]='3'
or [Account ID]='49'
or [Account ID]='776'
or [Account ID]='65'
or [Account ID]='989'
or [Account ID]='88'
then (if
[Centre ID]='PC'
or [Centre ID]='RIN'
then (if
[ProductStructure]='SRE'
or [ProductStructure]='NLL'
or [ProductStructure]='HER'
or [ProductStructure]='RIN'
Then (if
[Channel]='Internal'
then 'Result'
end)
end)
end)
end
I have tried the if then elseif then endif and it does not give me the correct results.
Thanks in advance.