Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I need to know how to count by two conditions, using a wildcard for
one of those conditions. For instance, each member has a rank and a unit. I can count multiple conditions without wildcards. =SUM((C2:C152="E5")*(U2:U152="BN1")) will tell me how many E5s are in 1st Battalion. But how many enlisted personnel total are in 1st Battalion? Enlisted ranks are indicated by E1, E2 and so on, up to E9. I've tried several formula that replace the "E5" with "E*" or "E?", but none have worked. Writing 9 different formula for E1 to E9, then totaling those formula up would work, but is there an easy way to do this? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You should learn about SUMPRODUCT
http://www.xldynamic.com/source/xld.SUMPRODUCT.html http://mcgimpsey.com/excel/formulae/doubleneg.html then come back with question. Give us more details of how the data is set out. The asterisk (*) in your formula is not a "wildcard" it is the multiplication operator. best wishes -- Bernard V Liengme Microsoft Excel MVP www.stfx.ca/people/bliengme remove caps from email "NoNickName" wrote in message oups.com... I need to know how to count by two conditions, using a wildcard for one of those conditions. For instance, each member has a rank and a unit. I can count multiple conditions without wildcards. =SUM((C2:C152="E5")*(U2:U152="BN1")) will tell me how many E5s are in 1st Battalion. But how many enlisted personnel total are in 1st Battalion? Enlisted ranks are indicated by E1, E2 and so on, up to E9. I've tried several formula that replace the "E5" with "E*" or "E?", but none have worked. Writing 9 different formula for E1 to E9, then totaling those formula up would work, but is there an easy way to do this? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=SUMPRODUCT(--(LEFT(C2:154,1)="E")*(U2:U152="BN1"))
"NoNickName" wrote: I need to know how to count by two conditions, using a wildcard for one of those conditions. For instance, each member has a rank and a unit. I can count multiple conditions without wildcards. =SUM((C2:C152="E5")*(U2:U152="BN1")) will tell me how many E5s are in 1st Battalion. But how many enlisted personnel total are in 1st Battalion? Enlisted ranks are indicated by E1, E2 and so on, up to E9. I've tried several formula that replace the "E5" with "E*" or "E?", but none have worked. Writing 9 different formula for E1 to E9, then totaling those formula up would work, but is there an easy way to do this? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
COUNT or COUNTIF using wildcard text? | Excel Worksheet Functions | |||
How do I count wildcard text meeting certain criteria in EXCEL? | Excel Worksheet Functions | |||
Count ifs - 2 conditions | Excel Discussion (Misc queries) | |||
Wildcard Usage: I absolutely need this to count?/sum? two or more criteri | Excel Discussion (Misc queries) | |||
Count with 2 conditions? | Excel Worksheet Functions |