Need help trying to get cell value when condition is met

S

SL

I'm trying to get the cell value from column A, when cell
in column E is less than or equal to zero. I'm only
interested in the first instance. Column E has a loan
value which is decreasing, but doesn't exactly reach
zero. Column A is the number of months. Thanks for your
help.
 
K

Ken Wright

Contiguous cells from E1 down with a header in E1, then perhaps the following as
one way of doing it:-

=OFFSET($A$1,COUNTIF(E:E,">=0"),)
 
Top