I have an array of dates and values and want to calculate in a formula at what date a certain value will be reached or be bigger.
Example:
1/1/2022 10
1/10/2022 13
1/20/2022 16
1/30/2022 19
At what date will 50 be reached?
GS has formulas to forecast the value for a date, but I know the value - I need the date.
Any help appriciated.
CodePudding user response:
A4 is the first date a4:a7 is the dates, b4:b7 is the values, 365 is how many days I want to plot out into the future and 50 value is the number you requested to find the date.
=vlookup(50,arrayformula({Growth(B4:B7, A4:A7-$A$4, sequence(365)-1),sequence(365) $A$4-1}),2)
CodePudding user response:
50 will be reached on 10th May 2022...
try TREND
function:
=TREND(A1:A4; B1:B4; 50)
or FORECAST
:
=FORECAST(50, A1:A4, B1:B4)
or GROWTH
:
=GROWTH(A1:A4, B1:B4, 50)
or LOGEST
, LINEST
based on your specific project needs