empty display in place of 0.0 ... possible?

D

Dave Horne

Someone here was kind enough to provide a formula which converts kg in one
column to lbs in another.

Is it possible where there is no kg value, that the lb value instead of
displaying 0.0, displays an empty cell?

Thanks, Dave Horne Excel 2007
 
P

Pete_UK

One way is to apply conditional formatting to the cell, such that if
the cell value is zero then the foreground colour is set to white (so
it appears blank).

Hope this helps.

Pete
 
G

Gary''s Student

Instead of:
=CONVERT(1000*A1,"g","lbm")
use:
=IF(A1="","",CONVERT(1000*A1,"g","lbm"))
 
S

Stefi

Try this:
=IF(ISBLANK(A1),"",A1*0.31)
Replace 0.31 by the real kg to lb rate!

Regards,
Stefi

„Dave Horne†ezt írta:
 
D

Dave Horne

Thanks to everyone who responded! I'm sorting through all the
possibilities.

Thanks, Dave Horne


One way is to apply conditional formatting to the cell, such that if
the cell value is zero then the foreground colour is set to white (so
it appears blank).

Hope this helps.

Pete
 

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