zero values

  • Thread starter Thread starter marksuza
  • Start date Start date
M

marksuza

Hi, I was wondering if anybody could help me with a problem I am having
I have a worksheet with several formulas in it where different user
input information. Since it is a worksheet for the whole year I hav
up to the month of december, in which case some of the formulas displa
'0'. I went to options and unchecked the '0' box, however, now, if th
user inputs '0' it also does not show. Is there a way to show the '0'
the users in put but not the '0' zeros for the formulas. Many Thanks.

Marco
 
Marcos, there are two possible solutions:

(1) you can place your formulas in IF statements where if they equal zero,
nothing will display, like so:

=IF([my formula]=0,"",[my formula])

(2) you can place your formula in an IF statement that says if some cell
that the formula depends on is blank, nothing will display in the formula
cell (this is the better solution, by the way):

=IF(ISBLANK([some cell that my formula depends on for input]),"",[my
formula])

Of course, in no case do you put in the square brackets [].

DDM
"DDM's Microsoft Office Tips and Tricks"
http://ddmara.tripod.com
 

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

Making a 0 invisible with a formiula 3
Displaying zeros in cells 2
Excel VBA 1
Index(Match) question 4
VLOOKUP returning #N/A result 2
#VALUE problem 3
Displaying Zero Values in a Chart 1
Formula showing zero's 12

Back
Top