Hello,
I am trying to create a formula that I've already created in excel and transferring it over to Alteryx. Assuming that the cell references in excel are the same name of the fields in Alteryx, how do I edit my formula to work in Alteryx?
Thank you,
=IF(B12987="",IF(U12987="",IF(D12987="",W12987,IF(D12987="",W12987,D12987)),U12987),B12987)
Solved! Go to Solution.
You can replace IF with IIF (inline IF) and then that expression would be valid without the leading =:
IIF(B12987="",IIF(U12987="",IIF(D12987="",W12987,D12987),U12987),B12987)
I simplified it a bit as you had a duplicate condition in it.
Thank you! I updated the formula with the name of the fields, however for some reason I am still only returning the 'B12987' field only. My data has "nulls" instead of blanks, could this be the reason?
You would need to update the expression to:
IIF(ISNULL(B12987),IIF(ISNULL(U12987),IIF(ISNULL(D12987),W12987,D12987),U12987),B12987)
if you have a combination of NULLs and "" then you can use:
OR(ISNULL(B12987),B12987="")
Hope it helps
Thank you so much, this worked perfectly!