Avinash K
Avinash K

Reputation: 53

How to use Google Finance to fetch stock data when the column contains stock ticker?

The B3 cell contains the stock ticker symbol say TCS. When i try to execute

=GOOGLEFINANCE("NSE:B3","PRICE")

The formula is giving error "When evaluating GOOGLEFINANCE, the query for the symbol: 'B3' returned no data." I want TCS to be used instead of B3. Can you suggest

Upvotes: 1

Views: 1572

Answers (1)

Lorena Gomez
Lorena Gomez

Reputation: 2203

Try this instead:

=GOOGLEFINANCE("NSE:"&B3,"PRICE")

Upvotes: 2

Related Questions