Need help with an Calculation result

  • Thread starter Thread starter rapierguy
  • Start date Start date
R

rapierguy

Trying to do something along the lines of the following:

=SUM(H32,H50)/20

then have the result show up on another page.

This works fine. However, when I have no values in H32 or H50 the result is
obviously a zero(0).

My question is this: How can I make the result show up as blank on the
other page and not show as a zero(0)?
 
Hi

=IF(AND(ISBLANK(H32),ISBLANK(H50)),"",SUM(H32,H50)/20)

Regards,
Per
 
Alan, T. Valko and Per Jessen,

I tried all your solutions but I get a "#NAME?" error. Any ideas?
 
Not sure what I did, but I managed to figure it out.
What I wound up doing was this:

=SUM(H32,H50)/20

I then placed the result in a cell and called the cell "Academic" (minus the
quotes)

Then on another page I did the following

=IF((Academic=0),"",(Academic))

And now I have a blank in the cell I wanted.
 

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