Before
After (Addresses Added)
I have a spreadsheet with names of venues and I would like to add the addresses of those venues in the next cell using a formula in Google Sheets. I would like to do this using a formula to do a Google Search for the results because I want to scrape many other values as well and quickly change the sheet on my phone as my needs change. Thus I would like to do this without using any outside coding language and not even google apps scripts if I can avoid it.
I found some information on how to do something similar with an excel formula here:
Using Google Sheets as a basic web scraper
That site shows how to do a google search for an author name of an article with an excel formula with a format like this:
=INDEX(IMPORTXML(A1,"//span[@itemprop='name']"),1)
Can you help me modify this to return the result of a google search into an excel cell?