Currently I have the following formula:
=MIN(INDEX(GOOGLEFINANCE(B2, "low",DATE(2020,2,19),TODAY()),0,2))
This gives me the lowest price for my stock but I want to know what date this lowest price was as well. Can anyone help me out?
Currently I have the following formula:
=MIN(INDEX(GOOGLEFINANCE(B2, "low",DATE(2020,2,19),TODAY()),0,2))
This gives me the lowest price for my stock but I want to know what date this lowest price was as well. Can anyone help me out?
try:
=QUERY(GOOGLEFINANCE(B2, "low", DATE(2020, 2, 19), TODAY()),
"order by Col2 limit 1 offset 1", 0)