If Statements

S

Scott

=IF(Info!B14<>"",Info!B14,IF(Info!B15<>"",Info!B15,IF(Info!B16<>"",Info!B16,"")))I'm
trying to create an if statement, that if a certain cell is blank, it will
automatically pull from the next cell down, and so on. The only problem is
that I can't figure out, how to prevent it from pulling from the same cell
twice. Below is a sample of the formula I'm using.

=IF(Info!B14<>"",Info!B14,IF(Info!B15<>"",Info!B15,IF(Info!B16<>"",Info!B16,"")))
 
D

Don Guillett

This for text and change to any number larger than possible for numbers
=INDEX(b:b,MATCH("zzzzz",b:b))
 

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

Top