I am stuck with an option to create upload either a long for wide format of the initial dataset. My requirement is
1) The user selects either one of the two data formats (long or wide). If it is a long format, merge with another another key/value pair dataset to create a new column. But, if the user selects wide format data, I don't need to merge as the column is already there. Instead, the wide format will be converted to long format.
For the above requirement, we created a radio button to either enable/disable tool containers for both the data sources (long and wide). The output I expect should be a single processed long dataset when I upload either of the two data formats. However, I am getting an error message
and my alteryx workflow is
I would appreciate any help.
Solved! Go to Solution.
Hi,
All interface tools need to be outside of the tool container, when the container is disabled.
A good practice is to always have your interface tools outside the container, regardless of whether or not you'll be disabling it. Doesn't take up too much screen real estate, and prevents that error. The "guts" of the container will not run if it's disabled by the app, even if the interface tools are on the outside, so you don't have to worry about that.
Take all the interface tools out of your containers, and you should be all set.
Thanks, you are right.
Very welcome!