Print

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

Guest

When I enter in a cell a formula that results in a FALSE result is their a
way to prevent the FALSE result from printing
 
Use
Format | Conditional Format
set the Cell Value parameter to "equals" and select FALSE from the list for
the value to equal. Then set the font color to the same color (white?) as
the background of the cell itself. It actually still prints, but because
it's white-on-white or color-on-color, then it doesn't appear on the printed
output.

This presents a problem if you actually want to see the word FALSE while
viewing the screen, of course.
 
How about leaving the cell looking blank if the result is false?

=IF(A1=123,A1,"")

Or similar.


Gord Dibben MS Excel MVP
 
Back
Top