Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Want to create an App in which it prompts users to do several things

nickrosen28
7 - Meteor

Hi everyone,

 

I am attempting to get a few things to prompt users to make a few changes to a workflow before running:

  1. Change the folder path of the input
  2. Change the number in the formula for workday of the month
  3. Update output folder path in a formula
  4. Update folder path for output

nickrosen28_0-1684342654925.png

 

Any help would be appreciated, I am assuming this is simple but have no app experience(:

2 REPLIES 2
ChrisTX
15 - Aurora

Check out the lesson for "Designing App Interfaces"

 

The Interactive Lessons and Training Videos are a great place to start.

 

Lessons for Macros and Apps:
https://community.alteryx.com/t5/Interactive-Lessons/tkb-p/interactive-lessons

 

Videos
Get your skills in gear with hours and hours of videos on topics ranging from beginner to advanced.
https://community.alteryx.com/t5/Videos/bd-p/live-training

 

Chris

phottovy
13 - Pulsar
13 - Pulsar

Hi @nickrosen28 ,

 

You already have the hard part done. The first step to creating an app is to build out a workflow. From there, you just need to add "interface" tools to update some of the values on that original workflow. I have attached a simplified workflow/app that shows you how to update the items you requests:

 

phottovy_1-1684345565773.png

 

The first two action tools are pretty straight forward. The first one will update the directory in the "Directory" tool to the one that the user selects.

phottovy_2-1684345687757.png

 

The second will change the value in the formula from 5 to whatever number the user selects: 

phottovy_3-1684345733245.png

phottovy_4-1684345746037.png

 

The third one is very similar to the other action tools, but I am using the "Replace a specific string" option at the bottom of the configuration window: 

phottovy_5-1684345811111.png

phottovy_6-1684345829189.png

The difference here is that the action tool will only replace the word Placeholder in the formula instead of overwriting the entire formula.

 

Finally, I didn't use an action tool for the output. Instead, I used the option to "Take File/Table Name From Field" option in the output tool to use the value from the previous formula tool as the file path/filename:

phottovy_7-1684345940410.png

 

 

 

Building apps can be intimidating at first but they get easier over time. One thing I recommend using is the "Interface Designer" and its built in debug feature. 

phottovy_8-1684346154316.png

 

From here, you can use the "Test View" screen to plug in different values to your app: 

phottovy_9-1684346361624.png

 

Then, if you click "Open Debug" on the right side, a new workflow will open up showing you exactly what your new workflow will look like with those values selected. For example, in the new debug version of the workflow, if you click on the first formula tool, you will now see that the workday has been updated to 9:

phottovy_10-1684346504894.png

 

For me, the debug view takes a lot of the guess work out of building your app since you can how the workflow will run based on the different values selected by the user.

 

I know this is a lot to take in but hopefully it helps you get started with app building!

Labels