• 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.

Blank cells that have formulas in them

rdepuydt

New Member
Cell B1 has a formula in it that displays a blank cell. If I write =If(B1=" ",True,False) it returns False. How do you evaluate a cell that has a formula in it but displays a blank?
 
I need column L to put TRUE in it if cells in H, I, or J have a value displayed. If all three of them show blank, FALSE.
 

Attachments

  • TEST SEC CREW EVAL - TRIPS WITH YARD AND SITE STOP 8.17.20.xlsx
    86.4 KB · Views: 8
How about
=NOT(AND(H11="",I11="",K11=""))

But you need to make sure that all the formulae in those columns return "" rather then " "
 
Back
Top