This should be so easy...

  • Thread starter Thread starter Crazy
  • Start date Start date
C

Crazy

Hi,
I have a workbook where on Sheet 2 I have certain cells =to cells on
sheet 1. If those cells are blank on sheet 1, it is showing up as "0"
in the cells on sheet 2. I don't want "0", I want blank if the cells
are blank in sheet 1. What should I be doing?

Thank you from an excel idiot!
 
=IF(Sheet1!A1="","",Sheet1!A1)

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
you could
on sheet2 go to
tools
options
view
and uncheck zero values

or you could have a condition in the formula
something like
=if(sheet1!A55=0,"",sheet1!A55)
 
WRONG!

=IF(Sheet1!A1="","",Sheet1!A1)

But Bob already told you that
 

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