Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
I am trying to figure out a formula that will calculate the number of cells that have a number greater than 0 in one cell and then a few columns over has the word "Low" in it. Right now, I have COUNTIF(L6:L327,"Low",IF(G6:G327,"0")) and of course I did something wrong to it because there's an error message. I'm not sure if explained this welll enough. Please help..... |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this,
=SUMPRODUCT((L6:L327="Low")*(G6:G3270)) Mike "Tflight" wrote: Hi, I am trying to figure out a formula that will calculate the number of cells that have a number greater than 0 in one cell and then a few columns over has the word "Low" in it. Right now, I have COUNTIF(L6:L327,"Low",IF(G6:G327,"0")) and of course I did something wrong to it because there's an error message. I'm not sure if explained this welll enough. Please help..... |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Any time you need to deal with more than one criteria, always consider
SUMPRODUCT(). In this case: =SUMPRODUCT((L6:L327="Low")*(G6:G3270)) -- Gary''s Student - gsnu200829 "Tflight" wrote: Hi, I am trying to figure out a formula that will calculate the number of cells that have a number greater than 0 in one cell and then a few columns over has the word "Low" in it. Right now, I have COUNTIF(L6:L327,"Low",IF(G6:G327,"0")) and of course I did something wrong to it because there's an error message. I'm not sure if explained this welll enough. Please help..... |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
That worked perfectly. Thanks. I looked up the sumproduct description, but it
really didn't make any sense. Could you explained why that worked? "Gary''s Student" wrote: Any time you need to deal with more than one criteria, always consider SUMPRODUCT(). In this case: =SUMPRODUCT((L6:L327="Low")*(G6:G3270)) -- Gary''s Student - gsnu200829 "Tflight" wrote: Hi, I am trying to figure out a formula that will calculate the number of cells that have a number greater than 0 in one cell and then a few columns over has the word "Low" in it. Right now, I have COUNTIF(L6:L327,"Low",IF(G6:G327,"0")) and of course I did something wrong to it because there's an error message. I'm not sure if explained this welll enough. Please help..... |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
http://www.exceluser.com/explore/sumproduct_11.htm
-- Gary''s Student - gsnu200829 "Tflight" wrote: That worked perfectly. Thanks. I looked up the sumproduct description, but it really didn't make any sense. Could you explained why that worked? "Gary''s Student" wrote: Any time you need to deal with more than one criteria, always consider SUMPRODUCT(). In this case: =SUMPRODUCT((L6:L327="Low")*(G6:G3270)) -- Gary''s Student - gsnu200829 "Tflight" wrote: Hi, I am trying to figure out a formula that will calculate the number of cells that have a number greater than 0 in one cell and then a few columns over has the word "Low" in it. Right now, I have COUNTIF(L6:L327,"Low",IF(G6:G327,"0")) and of course I did something wrong to it because there's an error message. I'm not sure if explained this welll enough. Please help..... |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thank you!
"Gary''s Student" wrote: http://www.exceluser.com/explore/sumproduct_11.htm -- Gary''s Student - gsnu200829 "Tflight" wrote: That worked perfectly. Thanks. I looked up the sumproduct description, but it really didn't make any sense. Could you explained why that worked? "Gary''s Student" wrote: Any time you need to deal with more than one criteria, always consider SUMPRODUCT(). In this case: =SUMPRODUCT((L6:L327="Low")*(G6:G3270)) -- Gary''s Student - gsnu200829 "Tflight" wrote: Hi, I am trying to figure out a formula that will calculate the number of cells that have a number greater than 0 in one cell and then a few columns over has the word "Low" in it. Right now, I have COUNTIF(L6:L327,"Low",IF(G6:G327,"0")) and of course I did something wrong to it because there's an error message. I'm not sure if explained this welll enough. Please help..... |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
If you are using Excel 2007 you can also consider COUNTIFS(L6:L327,"Low",G6:G327,"0") Excel 2007 also supports SUMIFS, and AVERAGEIFS -- If this helps, please click the Yes button Cheers, Shane Devenshire "Tflight" wrote: Thank you! "Gary''s Student" wrote: http://www.exceluser.com/explore/sumproduct_11.htm -- Gary''s Student - gsnu200829 "Tflight" wrote: That worked perfectly. Thanks. I looked up the sumproduct description, but it really didn't make any sense. Could you explained why that worked? "Gary''s Student" wrote: Any time you need to deal with more than one criteria, always consider SUMPRODUCT(). In this case: =SUMPRODUCT((L6:L327="Low")*(G6:G3270)) -- Gary''s Student - gsnu200829 "Tflight" wrote: Hi, I am trying to figure out a formula that will calculate the number of cells that have a number greater than 0 in one cell and then a few columns over has the word "Low" in it. Right now, I have COUNTIF(L6:L327,"Low",IF(G6:G327,"0")) and of course I did something wrong to it because there's an error message. I'm not sure if explained this welll enough. Please help..... |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I use a countif function according to two other countif fu. | Excel Worksheet Functions | |||
edit this =COUNTIF(A1:F16,"*1-2*")+COUNTIF(A1:F16,"*2-1*") | Excel Discussion (Misc queries) | |||
COUNTIF or not to COUNTIF on a range in another sheet | Excel Worksheet Functions | |||
COUNTIF | Excel Worksheet Functions | |||
COUNTIF in one colum then COUNTIF in another...??? | Excel Worksheet Functions |