Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
My formula reads: =SUM(B6+B22+B42+B57)
The Result reads: "0" because there are no values in Cells B6, B22, B42 and B57 yet. How can I write the formula so the cell shows no value if it equals zero? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
you can try something like the following
=IF(SUM(B6+B22+B42+B57)=0,"",SUM(B6+B22+B42+B57)) if the sum = 0 it puts a blank otherwise it puts the sum total. it's one workaround David "Formula Result to Read No Value-Not Zero" wrote: My formula reads: =SUM(B6+B22+B42+B57) The Result reads: "0" because there are no values in Cells B6, B22, B42 and B57 yet. How can I write the formula so the cell shows no value if it equals zero? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
DKINN: Thank you. This works!
"dkinn" wrote: you can try something like the following =IF(SUM(B6+B22+B42+B57)=0,"",SUM(B6+B22+B42+B57)) if the sum = 0 it puts a blank otherwise it puts the sum total. it's one workaround David "Formula Result to Read No Value-Not Zero" wrote: My formula reads: =SUM(B6+B22+B42+B57) The Result reads: "0" because there are no values in Cells B6, B22, B42 and B57 yet. How can I write the formula so the cell shows no value if it equals zero? |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You don't need SUM and +, either
=SUM(B6,B22,B42,B57) or =B6+B22+B42+B57 -- --- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "Formula Result to Read No Value-Not Zero" <Formula Result to Read No Value-Not wrote in message ... My formula reads: =SUM(B6+B22+B42+B57) The Result reads: "0" because there are no values in Cells B6, B22, B42 and B57 yet. How can I write the formula so the cell shows no value if it equals zero? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Display of formula result | Excel Worksheet Functions | |||
How do I display 0 if it is the end result for a formula | Excel Discussion (Misc queries) | |||
Display result of formula in header? | Excel Discussion (Misc queries) | |||
Formula is entered but will not display result | Excel Worksheet Functions | |||
How do I display the RESULT of a formula | New Users to Excel |