Just adding

L

Learning Excel

This is my formula C2=A2+B2
C3=A3+B3 and so on. Simple.
Now the difficulty comes when , let's say A4 and B4 are empty:
C4 will show 0.00 ( is money by the way).
I'd like in this case C4= empty or blank. No numbers or letters in C4.
Thanks.
 
R

RagDyeR

Try this:

=IF(AND(A2="",B2=""),"",A2+B2)
--

HTH,

RD
=====================================================
Please keep all correspondence within the Group, so all may benefit!
=====================================================


This is my formula C2=A2+B2
C3=A3+B3 and so on. Simple.
Now the difficulty comes when , let's say A4 and B4 are empty:
C4 will show 0.00 ( is money by the way).
I'd like in this case C4= empty or blank. No numbers or letters in C4.
Thanks.
 
L

Learning Excel

Thank you both RagDyeR and T. Valko.
-- Works Socraterian good.
Socrates said: I only know, I don''''t know nothing.
I say : I don''''t even know, I don''''t
know nothing.


T. Valko said:
Enter this formula in C2 and copy down as needed:

=IF(COUNT(A2:B2),A2+B2,"")
 
T

T. Valko

You're welcome!

A "wise" man once said:

"There are known knowns. These are things we know that we know. There are
known unknowns. That is to say, there are things that we know we don't know.
But there are also unknown unknowns. There are things we don't know we don't
know."

Donald Rumsfeld

--
Biff
Microsoft Excel MVP


Learning Excel said:
Thank you both RagDyeR and T. Valko.
-- Works Socraterian good.
Socrates said: I only know, I don''''t know nothing.
I say : I don''''t even know, I don''''t
know nothing.
 

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

Top