bLANK cELL

  • Thread starter Thread starter shawnews
  • Start date Start date
S

shawnews

I'm trying to use the formula ( below) to display a blank cell if there is
no value or the cell is blank
it displays 0 in the resulting cell
Any help appreciated.

Roger

=IF(ISERROR(AW570*G570)," ",(AW570*G570))
 
shawnews <[email protected]> spake said:
I'm trying to use the formula ( below) to display a blank cell
if there is no value or the cell is blank it displays 0 in the
resulting cell Any help appreciated.

=IF(ISERROR(AW570*G570)," ",(AW570*G570))

Well, if the cells are blank then it's not an error, is why.
It sounds like maybe you want this:

=IF(OR(ISERROR(AW570*G570),AW570*G570=0),"",(AW570*G570))

=dman=
 

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