Seems simple, but...Please Help!!!

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

Guest

I'm looking for a function that will return the value of the first non-blank
cell in a range.
 
Try...

=INDEX(A2:A100,MATCH(TRUE,A2:A100<>"",0))

....confirmed with CONTROL+SHIFT+ENTER.

Hope this helps!
 
Try this entered normally if TEXT
=INDEX(A2:A100,MATCH("*",A2:A100,0),0)
 
Don Guillett said:
Try this entered normally if TEXT
=INDEX(A2:A100,MATCH("*",A2:A100,0),0)
....

But if not text or not necessarily text, the following array formula
would find it.

=INDEX(A2:A100,MATCH(FALSE,ISBLANK(A2:A100),0))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top