Help on formula

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Greetings!

I have the following columns:

A. Cost B. Plan C. Additional D.
Total
$100.00 OTN $35
$135
OTN2 $40
$0
$150.00 OTN4 $25
$175

How can i get the TOTAL field to calculate Column A and C only when there is
a value entered in Column A? In case you are wondering, the Additional
Column (c) has assigned values, however I don't want a total if there isn't
data in Column A?

I hope you understand my msg.

Thanks for any help.
 
Perhaps
=SUMIF(A3:A8,"<>"&"",C3:C8)
or
=SUMPRODUCT(--(A3:A8<>""),C3:C8)
 
If you mean on a row by row basis, then in D2 enter =IF(A2="","",A2+C2)
 

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


Back
Top