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.
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 ObjectSet newsite = CreateObject("InternetExplorer.application")newsite.Visible = Truenewsite.Navigate "http://www.google.com/search?hl=en&ie=UTF-8&q=" & ActiveCell.TextEnd Sub
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.