Find the First Blank Cell In a range

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Does anyone know of a formula to find the first blank cell in a range that has more than one blank cell in it?

MATCH("",range,0) returns #NA

Thanks
 
this will do it but not if something in e2.
=MATCH("*",E2:E200,0)

--
Don Guillett
SalesAid Software
(e-mail address removed)
0013 said:
Does anyone know of a formula to find the first blank cell in a range that
has more than one blank cell in it?
 
Don,
this is not working for me and I did not expect it would.
I think in this case it is best to use an additional
column with an IF
F2 =IF(E2="", 0, 1), copy,
and then use
=MATCH(0, F2:F200, 0)

Kostis
 
0013 wrote...
Does anyone know of a formula to find the first blank cell in a
range that has more than one blank cell in it?

Try the array formula

=MATCH(TRUE,ISBLANK(Range),0
 
Back
Top