What do I use to test this. Not isblank

D

dbuchanan

A cell contains a very complicated formula that is written to return a
number, text, or an empty string. How to I test for an empty string?

None of the logical tests seem to be any good.
IsBlank, IsText, IsNumber, IsNonText... none of these will work.

Using AND or OR with a combination of these does no good either.

There seems to be no logical way to test this. Any suggestions?

- Doug
 
R

Ragdyer

If you're looking to test a cell that looks empty to see if it contains a
formula that has returned a < "" >, you could try this:

=COUNTIF(A1,"*")

Will return a "1" if A1 contains a < "" >,
And will return "0" if A1 is truly empty.

This will count text, as well as "nulls".
 

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

Similar Threads


Top