Sum dollar amount if it has an "S" next to it.

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

Guest

Need help, I have a home budget sheet that one column has a dollar amount in
it and in the column next to it, I put a "C" for checking or a "S" for
savings. Note that in the dollar amount column there are some blank cells,
and in that case there would be no "C" or "S" in the column next to it
either. How can I sum all of the dollar amounts in the colum that just have a
"S" in the colum next to it?
Thanks for any help.
 
if , for example the $ amounts are in column A and the indicators are in
column B
=sumif(B:B,"S",A:A)
 
With your "S" in column B and your dollar amounts in column A:

=SUMIF(B:B,"S",A:A)

HTH,
Paul
 

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

summing two columns of different data 4
summing arrays 4
Match formula 2
SUMIF with multiple conditions 5
Create Group and Label Cell 8
Rounding Effecting Sum 2
Multiple Conditions 5
IF ERROR FORMULA 1

Back
Top