Community Spring Cleaning week is here! Join your fellow Maveryx in digging through your old posts and marking comments on them as solved. Learn more here!

Alteryx Designer Desktop Discussions

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

Can the download tool download excel files from a dropdown menu?

pvara
8 - Asteroid

I have a use case where I am trying to download on a weekly basis an updated excel file from this site.

 

https://340bopais.hrsa.gov/medicaidexclusionfiles

 

whereby selecting the latest date range and doing some calculations in my workflow. The challenge is how to automate this routine?

Running Alteryx Version 11.7

 

Thank you,

Pete

 

 

 

 

 

1 REPLY 1
dataMack
12 - Quasar

When I'm trying to figure out how to automate things related to websites, an important tool for me is Fiddler (https://www.telerik.com/fiddler).  Install that and there a few extra steps to set it up to intercept https traffic - you can find this info on their site.  Then while it's running you would go in your browser to the hrsa.gov site and click on that download button.  In Fiddler you'll see how the download request comes across - i like to look at the Raw header and response sections.  That will tell you what you need to do within the download tool in Alteryx (ex. URL, header formation, tokens, etc.)

 

Alteryx will be able to read that response into it's data stream - you can configure the download tool to save it to a temp file, and the use a dynamic input tool to read in the excel file (if you want to pull the file and read it into your workflow all in the same workflow)

Labels