Forum Discussion
anupambit1797
Dec 02, 2024Steel Contributor
Downloading multiple files from excel hyperlinks
Dear experts, Could you please share any Excel formula or PQ solution to download multiple files from excel hyperlinks. Each cell have one hyperlink and there are total > 100 h...
peiyezhu
Dec 03, 2024Bronze Contributor
download.bat
curl -O http://www.example.com/index.xlsx
https://curl.se/docs/tutorial.html
Get a webpage and store in a local file, make the local file get the name of the remote document (if no filename part is specified in the URL, this fails):
curl -O http://www.example.com/index.html