Is this possible with excel vba? Auto download bank statements?

shyy

Well-known Member
Joined
Nov 6, 2008
Messages
1,484
Hey guys,

I was wondering if this was possible to create a script where it can autodownload from bank websites to download monthly bank statements.
I have done macro for currency exchange rates, but not when it comes to actually downloading a pdf. Is this possible?

If not, is this even possible with regular VBA? What would I need to learn and know in order to get this done. I am guessing Microsoft SQL??

Thanks
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
Thanks, I actually used web query before to get exchange rates, don't this will do it though. After looking at a Microsoft link found

"NO DATA IS RETURNED FROM A SECURITY-ENHANCED SITE (SITES WHERE LOGIN IS REQUIRED)
Excel will not support getting data from security-enhanced Web sites that do not use Microsoft Windows NT® security. A common example of this would be a bank’s Web site that allows you to view your personal account information."

Hope there is a way around this. Would regular VBA do the trick?
 
Upvote 0
i don't know if there is a way around with VBA
but i know it can be done with
a script

Code:
@echo off > tempscript.ftp & SetLocal EnableDelayedExpansion

>> tempscript.ftp echo open ftp.bank.net
>> tempscript.ftp echo Username
>> tempscript.ftp echo Password
>> tempscript.ftp echo bin
>> tempscript.ftp echo mget myfile.zip
>> tempscript.ftp echo quit

ftp -v -i -s:tempscript.ftp

del tempscript.ftp

exit

this is for an ftp server
but you can do it for website as well
pls don't ask me how :)

i saved this as a bat file
hope it helps a bit
regards.
 
Upvote 0

Forum statistics

Threads
1,224,518
Messages
6,179,253
Members
452,900
Latest member
LisaGo

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top