0

I want to use Google Sheets to find the lowest price a stock has reached in the last 6 months.

I have tried various formulas:

=googlefinance("NSE:RELIANCE", "close", Today()-365,125)

  • it shows full previous year data with date columns.

=MIN(INDEX(GOOGLEFINANCE("NSE:RELIANCE","price",DATE(YEAR(TODAY()),MONTH(TODAY())-6,DAY(TODAY())), TODAY()),0,2))

  • it shows only price column no dates

Is there a way to do this?

Wrathyimp
  • 7
  • 5
  • Something like this =let(x,googlefinance("NSE:RELIANCE", "close", Today()-182,182),filter(x,choosecols(x,2)=min(choosecols(x,2)))) – user11222393 Aug 17 '23 at 07:07

1 Answers1

0

You may try:

=let(Σ,googlefinance("NSE:RELIANCE","price",today()-180,today()),
     filter(Σ,index(Σ,,2)=min(index(Σ,,2))))
rockinfreakshow
  • 15,077
  • 3
  • 12
  • 19