Hi everyone, I am rather new to Alteryx and I am working on trying to create columns based off of excel columns that have formulas dedicated and referencing even more cells.
For example how would I create that formula in alteryx
You need to use the formula tool, the formula for this is IF [DO2] = 0 THEN "-" ELSE [DO2] - [DN2] ENDIF. Notice that using Alteryx you will reference the column names of your input, not the cells like with excel. take a look at the attached workflow
If the provided answer helped you to solve the problem/was correct, please accept it as a solution :)
Thanks.
Hi @Tonytran2014, you can use the tool, "Formula" under "Preparation" section to create a new column with a similar formula. You can learn some of basic formulas by clicking the open examples.
I can also build an example, would you mind to share a sample data?
Find in attachement the way of doing that.
The IIF function in alteryx works exactly as in excel according the syntax : IIF(your_test,value_if_true,value_if_false).
I did a test with dummy dataset.