SumIF with 2 Conditions

L

lightbulb

I'm needing to do a SUMIF function with two conditions, how do I do this?

For Example;

SUM the cells in AD7:AD294 when B4:B294 equal "F", AND when AD7:AD294 are
less than 200

Also, is there a way that if a column has dates and numbers in it you can
have a formula that disregards the dates and only sums the numbers rather
than treating the dates as numbers also?

Thanks!!
 
T

Tony7659

Hi lightbulb:

Consider:
=SUM(IF((B7:B294="F")*(AD7:AD294>200),AD7:AD294))
-- It must be treated as an array so press F2 and then CTRL-SHIFT-ENTER --

Tony.
 
T

Tony7659

Hi lightbulb:

Consider:
=SUM(IF((B7:B294="F")*(AD7:AD294>200),AD7:AD294))
-- It must be treated as an array so press F2 and then CTRL-SHIFT-ENTER --

Tony.
 
T

Tony7659

Hi lightbulb,

Consider:
=SUM(IF((B7:B294="F")*(AD7:AD294>200),AD7:AD294))

-- It must be treated as an array so press F2 and then CTRL-SHIFT-ENTER.

Tony.

Press "Yes" if useful to you.
 
T

Tony7659

Hi lightbulb,

Consider:
=SUM(IF((B7:B294="F")*(AD7:AD294>200),AD7:AD294))

-- It must be treated as an array so press F2 and then CTRL-SHIFT-ENTER.

Tony.

Press "Yes" if useful to you.
 

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

Sum If Visible 10
Sumif ">today()" 1
Sumif formula 4
sumif with 2 variables 2
Using SUMIF with AND 2
Using SumIf and Multiple Conditions 3
SUMIF and Named ranges 6
Summing Based on Conditions using Array 1

Top