Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I would like to sum a range if column A = x and column B = y then sum those
numbers in range C that meet the criteria. Is this possible? SumIf only allows for one range and criteria, how can I get around this? |
#2
![]() |
|||
|
|||
![]() Try =SUMPRODUCT(--(A2:A500="x"),--(B2:B500="y"),C2:C500) Regards, Peo Sjoblom "Holly B." wrote: I would like to sum a range if column A = x and column B = y then sum those numbers in range C that meet the criteria. Is this possible? SumIf only allows for one range and criteria, how can I get around this? |
#3
![]() |
|||
|
|||
![]()
try
=sumproduct((rnga="x")*(rngb=1)*rngc) -- Don Guillett SalesAid Software "Holly B." <Holly wrote in message ... I would like to sum a range if column A = x and column B = y then sum those numbers in range C that meet the criteria. Is this possible? SumIf only allows for one range and criteria, how can I get around this? |
#4
![]() |
|||
|
|||
![]()
=SUMPRODUCT(--(A1:A10="x"),--(B1:B10="y"),C1:C10)
SUMPRODUCT can't do whole columns, so you'll need to identify ranges. For a discussion on what this formula is doing: http://www.xldynamic.com/source/xld.SUMPRODUCT.html "Holly B." wrote: I would like to sum a range if column A = x and column B = y then sum those numbers in range C that meet the criteria. Is this possible? SumIf only allows for one range and criteria, how can I get around this? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Passing a range name as an argument to the Index Function | Excel Discussion (Misc queries) | |||
named range refers to: in a chart | Excel Discussion (Misc queries) | |||
HTML_Control Range name | Excel Discussion (Misc queries) | |||
Sub out of range | Excel Discussion (Misc queries) | |||
Achieving Range with a trendline | Charts and Charting in Excel |