Need help trying to get cell value when condition is met

  • Thread starter Thread starter SL
  • Start date Start date
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.
 
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"),)
 
Back
Top