I am trying to eliminate volatile/single thread functions to make my sheet run faster. The transition is proving difficult in many aspects for me.
I have many numeric values that are variable in Col B up to row 214. They continuously descend in value. An entry can be made that will add to a cell in Col B, but the numbers will still continuously descend afterwards.
A1 contains the number 140. I am waiting for the numbers in Col B to drop just below A1.
After an entry is made that causes an addition in a Col B cell, there is no way to determine how long it will take for the numbers to drop to A1.
Currently, I can get the row number of the last entry with this in cell A2. Col C determines when an addition is made to Col B.
A2=LOOKUP(2,1/(C5:C214<>""),ROW(B5:B214))
I can also get the value of the Col B cell after an addition with this A3=INDEX(B1:B214,A2)
My questions is how do I make a formula that will search Col B from the last time an addition was made to the end of Col B for a number just below A1? Note: It is possible for Col B to drop below A1 more than once, so it is important that this checks Col B after the last increase was made.
I have many numeric values that are variable in Col B up to row 214. They continuously descend in value. An entry can be made that will add to a cell in Col B, but the numbers will still continuously descend afterwards.
A1 contains the number 140. I am waiting for the numbers in Col B to drop just below A1.
After an entry is made that causes an addition in a Col B cell, there is no way to determine how long it will take for the numbers to drop to A1.
Currently, I can get the row number of the last entry with this in cell A2. Col C determines when an addition is made to Col B.
A2=LOOKUP(2,1/(C5:C214<>""),ROW(B5:B214))
I can also get the value of the Col B cell after an addition with this A3=INDEX(B1:B214,A2)
My questions is how do I make a formula that will search Col B from the last time an addition was made to the end of Col B for a number just below A1? Note: It is possible for Col B to drop below A1 more than once, so it is important that this checks Col B after the last increase was made.
Last edited: