Avatar of epichero22
epichero22
Flag for United States of America asked on

Can I program Excel to download information from Google?

Can I program Excel to download information from my browser when doing a Google search?  For example, I want to download the results of Google Places.  I heard that I can use macros to accomplish this but wanted to hear your take.
Microsoft ExcelWeb DevelopmentWeb Services

Avatar of undefined
Last Comment
epichero22

8/22/2022 - Mon
Martin Liss

Does this help?
epichero22

ASKER
I downloaded, installed, and tried out that program but I'm unsure on how to go about doing it.  Basically what I'm looking for is an automated way to download information into a spreadsheet from a Google search (business name, address, etc).  Is that possible?
Martin Liss

This will get you started. It's a macro that will do a Google search based on what is in the active cell. I believe I've seen other threads that talk about downloading the results.

Sub GoogleSearch()
Dim newsite As Object

Set newsite = CreateObject("InternetExplorer.application")
newsite.Visible = True
newsite.Navigate "http://www.google.com/search?hl=en&ie=UTF-8&q=" & ActiveCell.Text
End Sub

Open in new window

Experts Exchange is like having an extremely knowledgeable team sitting and waiting for your call. Couldn't do my job half as well as I do without it!
James Murphy
Martin Liss

This seems to be free.
epichero22

ASKER
That software will just get the title of the page, the description, and the URL.  What I would like is the name of the business, the address, the manager, etc.  It's what's shown in a Google Places search.
ASKER CERTIFIED SOLUTION
Martin Liss

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
epichero22

ASKER
TY
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.