I have a workflow that I am running through the Windows Command Line interface. However it doesn't seem to be running the flow properly. I have a formula that isn't executed when the workflow runs. However if I open up Designer and run the workflow, the formula is executed properly. Does anyone have any idea what might be causing this? There may be other portions of the workflow that aren't running properly, but this particular one is the most obvious.
The file resides on Dropbox. My code for the Command Line and the formula are below.
Command Line
CALL "C:\Program Files\Alteryx\bin\AlteryxEngineCmd.exe" "C:\Users\Name\Dropbox\csv_output.yxmd"
Alteryx
IF [Industry] = "ACCOUNTING" THEN "Accounting"
ELSEIF [Industry] = "ALTERNATIVE_MEDICINE" THEN "Alternative Medicine"
ELSE [Industry]
ENDIF