Excel Formula Question

D

Donald

My first formula to get a count with no dollar amount;

=countif(January09!A1:A10,"test") - this gives me a count of test in columns
A1 thru A10.

Example = 3

My question: in columns B1 thru B10 is the dollar amount.

Example for test = $100.00, totaling $300.00 for the 3 test found in Column A.

How can I total the $300.00 only pulling out the test from column A

=sumif(January09!A1:A10,"test" - this is where I need to pull in the $100.00
totaling $300.00 from column B (I keep having problems with different
formulas).
 
F

Fred Smith

Try it this way:

=sumif(January09!A1:A10,"test",January09!B1:B10)

Regards,
Fred.
 
E

Elkar

If I understand correctly, this should work:

=SUMIF(January09!A1:A10,"test",January09!B1:B10)

HTH
Elkar
 

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