1

I am hoping to create a column in Excel that links to a Google search for a specific stock depending on the stock symbol in column A. For instance if column A1 = AAPL,

b1 would be:

Using the Symbol in A1, cell b1 will create a link that makes Google search. I know this can be done in google sheets but I'm not sure of the exact syntax.

player0
  • 124,011
  • 12
  • 67
  • 124
westman2222
  • 663
  • 1
  • 12
  • 30

1 Answers1

0
="https://www.google.com/search?q="&A1

enter image description here


=HYPERLINK("https://www.google.com/search?q="&A1, "search now")

0


=ARRAYFORMULA(HYPERLINK("https://www.google.com/search?q="&A1:A2, 
 "search for "&A1:A2))

enter image description here


=GOOGLEFINANCE(A1, "price")

enter image description here

player0
  • 124,011
  • 12
  • 67
  • 124