keep cell blank when false in IF statement

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

Guest

How do I keep the cell blank when doing an IF statement. I want the cell to
remain blank if the statement is false but it keeps putting False in the cell.
 
ruthslaughter said:
How do I keep the cell blank when doing an IF statement. I want the cell to
remain blank if the statement is false but it keeps putting False in the cell.

If A1 is blank leave B3 blank, otherwise put A1 in B3

=IF(A1=""," ",A1)
 
To have a "blank" result for the FALSE return try this:

=IF(A1>0,A1,"")

Use 2 double quotes for the FALSE option
 

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

Back
Top