I have my Alteryx workflow finished, and I want to put the output data into a query. Please let me know if Alteryx can do this automatically. Here is an example of what I would want...
Alteryx Output:
| Store | Apples | Oranges | Peaches |
| Walmart | 4 | 3 | 2 |
| ShopRite | 9 | 5 | 8 |
Then, I would only want to put the Apples and Oranges data into my query, with each entry looking like this:
Select discussion example
In Apples('4', '9')
and
In Oranges('3','5')
So essentially, I want to get the data into the query following the format 'text,' for each input, and only use data from the apples and oranges row.
I hope I explained this well lol, any help is appreciated.