SumIf help needed ( I think)

G

Guest

Hello Oh Wise Ones (again!)

I think I need to use SumIf, but don't know exactly how.

In column A, I have a variety of letters and blank spaces. In column C I
have a variety of numbers and blank spaces.

I'd like a formula to calculate the sum of all numbers in column C if the
letter in column A is "F". (so if A3 and A8 and A9 are F, then the formula
would calculate C3+ C8 + C9). There would never be a time where the text in
column A would equal F and the corresponding cell in column C would be blank.

If you have any ideas, I'd be delighted.

Thank you.
 
L

Leo Heuser

julie said:
Hello Oh Wise Ones (again!)

I think I need to use SumIf, but don't know exactly how.

In column A, I have a variety of letters and blank spaces. In column C I
have a variety of numbers and blank spaces.

I'd like a formula to calculate the sum of all numbers in column C if the
letter in column A is "F". (so if A3 and A8 and A9 are F, then the
formula
would calculate C3+ C8 + C9). There would never be a time where the text
in
column A would equal F and the corresponding cell in column C would be
blank.

If you have any ideas, I'd be delighted.

Thank you.

Hello Julie

One way:

=COUNTIF(A1:A100,"f",C1:C100)
 
S

Sandy Mann

Try:

=SUMIF(A1:A20,"F",C1:C20)

--
HTH

Sandy
In Perth, the ancient capital of Scotland

(e-mail address removed)
(e-mail address removed) with @tiscali.co.uk
 
G

Guest

Oh those pesky quotation marks. No wonder it wasn't working....

THank you thank you!!
 
B

Bill Kuunders

=SUMIF(A1:A10,"F",C1:C10)
or you could use sumproduct
=SUMPRODUCT((A1:A10="F")*(C1:C10))

Greetings from New Zealand
Bill K
 

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


Top