Removing 0 from cell that is blank

M

Mike

I am have set-up a worbook in which one worksheet is populated by by data
completed within another worksheet. The problem I have is that if a cell is
left blank, not filled in by a number or text, it is left with a zero (0).
How do I have this removed from my worksheet when data is not completed?

Thanks
Mike
 
G

Gary''s Student

instead of:
=Sheet2!A1
use something like:
=IF(Sheet2!A1="","",Sheet2!A1)
 
D

Dave Peterson

Time to post the formula you used--or try GS's suggestion once more.

Or did the "sending" cell really contain False/Flase???
 
M

Mike

Here is the formula I used which is giving me the "false" error. Thank you.

=IF('Start-up'!C9:J9=",",'Start-up'!C9:J9)
 
R

Reeza

Here is the formula I used which is giving me the "false" error. Thank you.

=IF('Start-up'!C9:J9=",",'Start-up'!C9:J9)







- Show quoted text -

Need the double quotes, excel doesn't work with single quotes
=IF('Start-up'!C9:J9="","",'Start-up'!C9:J9)
 
D

Dave Peterson

You're going to need a formula for each cell:

=IF('Start-up'!C9="","",'Start-up'!C9)

And watch those commas and double quotes!
 

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

Top