Hi All:)
There are 50 columns in my data (A,B,C.......ZY) and then each one has to be multiply by 1 of another 50 column with different coefficient (A_M, B_M, C_M.....ZY_M).
I know I can do this easily using Formula and creating one new column with multiplication at the time , but I bet there is a better way:)
I just wonder if something like this is possible with Alteryx with Multi - field formula action on multiple column at the same time.
IF [_CurrentFieldName_]==[A] THEN ([A]*[A_M])
ELSEIF [_CurrentFieldName_]==[B] THEN ([B]*[B_M])
ELSE [_CurrentFieldName_]==[D] THEN ([D]*[D_M]) etc. for each of 50 columns .....
ENDIF
Thanks!:)