Need to create blank computation column

R

Randy

Ok, let's try again. This time I'm breaking it down to a
simple problem so that I don't confuse anyone:

I have 3 cells in a row. In cell x I have a variable. In
cell y I have a variable. In cell z I have a formula:
=x*y . Now if the user is presented with variable x and
nothing for variable y, and the formula is already in
place, cell z will display 0. But I want the user to be
presented with a blank field instead, until such time
he/she enters in a variable for cell y. Therefore, I need
to know what command will tell cell z to display a figure
only if the computation is greater than 0. Any ideas?
Thank you.
 
E

Eva Shanley

This will display a blank if the computation would result
in 0.
=IF(X1*Y1=0,"",X1*Y1)
 

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

Similar Threads


Top