NO. Only when you have a between condtion like greater than 10 and less then 50.
In other cases of summing with multiple conditions, you can use an array or SUMPRODUCT formula as in:
=SUMPRODUCT((A1:A10="A")*(B1:B10="B"),(C1:C10))
=====
Aladin,
I have a similar problem using two criteria. Only I'm searching for text. i.e "employee name" and "vacation" then summing if it meets the two criteria. I've tried your formula but get an #value error message. Can you help?
Brian
Brian --
Would you post the formula that you tried, along with what kind of values you have in the ranges of interest and criteria?
=========
Aladin - I figured it out! Thanks!!!!
Re: Aladin - I figured it out! Thanks!!!!
How does your formula look like Brian?
Rudi
=SUM(IF($G$1:$G$99="employee name",IF($I$1:$I$99="vac",($H$1:$H$99))))+SUM(IF($B$1:$B$99="employee name",IF($D$1:$D$99="vac",($C$1:$C$99))))