So I have been trying to run a python script inside my alteryx and I just cannot seem to get the output of the data onto the anchor.
The error reads- NameError: name "Alteryx" is not defined
Any help is much appreciated.
For your reference, in the attached screenshot, the code works perfectly fine and I can recall variable_6 however, I cannot output it.
Solved! Go to Solution.
Are you importing Alteryx at the beginning of your script?
you need
from ayx import Alteryx
Worked like a charm. Thank you so much @BrandonB. Can't believe I missed that!