Excel VBA to download Excel Google Doc

Williamtj21

New Member
Joined
Mar 13, 2014
Messages
2
Hello guys,

I would like to have a code that can open my excel google doc, click file, choose download as, choose microsoft excel, click open. This process is identical for all Excel Google Doc, so I don't think I need to give my google doc website addresses.

Can someone help me please? I have been trying to look for a solution, but have not been successful. I would really really really appreciate the help.

Thank you very very much for your time.
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
Welcome to MrExcel forums.

Your request can be done with the Google Drive API - https://developers.google.com/drive/web/manage-downloads.

First, you need to activate the Drive API for your app. You can do this in the Google Developers Console https://code.google.com/apis/console/:
1. In APIs & Auth, click APIs and set Drive API to ON.
2. In Credentials, Create New Client ID - Installed application. This gives you a Client ID string and a Client secret string which you use in your VBA code.

Then write VBA code to handle the Google OAuth2 authentication using the Client ID and Secret - there is example code here - Google Oauth2 VBA authentication - Excel Liberation, which is based on OAUTH2 and VBA - Excel Liberation. The code described on the former page encrypts the Client ID and Secret in the Windows registry, whereas the latter doesn't.

Then write VBA code to download the file as described in the first link above. You would use XMLhttp in VBA to make GET and POST requests to the Google URLs. You will also need code to parse the JSON strings that the Drive API sends - see Parsing JSON in Excel VBA - Stack Overflow, or I believe there is similar code on Downloads - Excel Liberation.

As you can see the whole process is very complicated and you may find it quite overwhelming.

A possible alternative is to write VBA code which automates your Google Drive web page with Internet Explorer and handles the IE download windows using the Windows API (FindWindow, etc.).
 
Upvote 0
Hello John,

Thank you very much for your reply. Can you show me the second alternative?

"write VBA code which automates your Google Drive web page with Internet Explorer and handles the IE download windows using the Windows API (FindWindow, etc.)"

I would really appreciate the help.
 
Upvote 0

Forum statistics

Threads
1,214,958
Messages
6,122,475
Members
449,087
Latest member
RExcelSearch

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