• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

If function on empty strings

or use NOT:
=NOT(ISBLANK(cell))
or
NOT(cell="")

Note that ISBLANK doesn't see a formula returning "" as blank (also if a cell formula returnng "" is copied to a cell as values, it too won't be seen as blank by ISBLANK), so the cell="" is probably safer for you.
 
or use NOT:
=NOT(ISBLANK(cell))
or
NOT(cell="")

Note that ISBLANK doesn't see a formula returning "" as blank (also if a cell formula returnng "" is copied to a cell as values, it too won't be seen as blank by ISBLANK), so the cell="" is probably safer for you.
Or using :

Cell <>""

or,

=A1<>""

It return the same result
 
Note that ISBLANK doesn't see a formula returning "" as blank (also if a cell formula returnng "" is copied to a cell as values, it too won't be seen as blank by ISBLANK), so the cell="" is probably safer for you.
Or you could use COUNTBLANK instead which recognizes the null string ""
 
Back
Top