Todays Date

K

Kevin

I need help with a formula. In Column B I will have a date. In column E I
will have a total of C and D. Right in E I am using =SUM(C3+D3). If I do not
have a Date entry in B I do not want E to show. I tried
=IF(B3<=TODAY(),C3+D3,"") But that does not work for me. Any suggestions?
I am using Excel 2007
 
J

Jarek Kujawa

may I ask for some calrification please?
why would be C3+D3 be better than SUM(C3+D3)?
 
B

barry houdini

may I ask for some calrification please?
why would be C3+D3 be better than SUM(C3+D3)?






- Show quoted text -

If you are going to use SUM then you'd use either

=SUM(C3,D3) or =SUM(C3:D3)

This might be preferable to =C3+D3 because SUM ignores text so if
either C3 or D3 had a text value using SUM would avoid an error while
still summing any numeric values in the range

With SUM(C3+D3) however there is no advantage to using SUM, it's
superfluous
 

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