I am a relative newbie to Alteryx,but could not find an answer to below without the use of constants
IF a THEN [example] = 10 * [example]
ELSEIF b THEN [example] = 20 * [example]
ELSE [example] = 30 * [example]
ENDIF
How can I input the parameters (10, 20 and 30 in the example above), without
a) using constants (therefore I have too many parameters in my model, unless I could input/ import constants from an external excel source...
b) creating 3 extra columns all filled with the same number 10, 20 and 30
Thanks.