Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Hi, I am trying to add entries in a particular column on two criteria: 1.) that the enries i am looking for equal 1. 2.) that the entries i am looking for correspond to "The word customer" in another column to the left. The columns are not directly next to each other Customer *1* Stakeholder 1 Customer *1* Supplier 1 The number in bold is the number i want. Thanks -- garyablett ------------------------------------------------------------------------ garyablett's Profile: http://www.excelforum.com/member.php...o&userid=34145 View this thread: http://www.excelforum.com/showthread...hreadid=539725 |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi!
It's not real clear what you want. Do you want to count the number of times "customer" and "1" appear in the same row? Biff "garyablett" wrote in message ... Hi, I am trying to add entries in a particular column on two criteria: 1.) that the enries i am looking for equal 1. 2.) that the entries i am looking for correspond to "The word customer" in another column to the left. The columns are not directly next to each other Customer *1* Stakeholder 1 Customer *1* Supplier 1 The number in bold is the number i want. Thanks -- garyablett ------------------------------------------------------------------------ garyablett's Profile: http://www.excelforum.com/member.php...o&userid=34145 View this thread: http://www.excelforum.com/showthread...hreadid=539725 |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this:
=SUMPRODUCT((A1:A100="Customer")*(B1:B100=1)) -- HTH, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! --------------------------------------------------------------------------- "garyablett" wrote in message ... Hi, I am trying to add entries in a particular column on two criteria: 1.) that the enries i am looking for equal 1. 2.) that the entries i am looking for correspond to "The word customer" in another column to the left. The columns are not directly next to each other Customer *1* Stakeholder 1 Customer *1* Supplier 1 The number in bold is the number i want. Thanks -- garyablett ------------------------------------------------------------------------ garyablett's Profile: http://www.excelforum.com/member.php...o&userid=34145 View this thread: http://www.excelforum.com/showthread...hreadid=539725 |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Sorry, I should have been more clear with what i want. in column A there are three types of people: customer, stakeholder and supplier. In column D they are all ranked 1-5 what i want to do is to count the* customers* that are ranked *1*. i want to do this for approximately 100 entries. Any help would be great. -- garyablett ------------------------------------------------------------------------ garyablett's Profile: http://www.excelforum.com/member.php...o&userid=34145 View this thread: http://www.excelforum.com/showthread...hreadid=539725 |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
One way:
=SUMPRODUCT(--(A1:A100="customer"),--(D1:D100=1)) In article , garyablett wrote: Sorry, I should have been more clear with what i want. in column A there are three types of people: customer, stakeholder and supplier. In column D they are all ranked 1-5 what i want to do is to count the* customers* that are ranked *1*. i want to do this for approximately 100 entries. Any help would be great. |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() thanks JE McGimpsey. that works great! -- garyablett ------------------------------------------------------------------------ garyablett's Profile: http://www.excelforum.com/member.php...o&userid=34145 View this thread: http://www.excelforum.com/showthread...hreadid=539725 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Finding the median of numbers meeting criteria | Excel Discussion (Misc queries) | |||
Finding One Value, Matching Three Criteria | Excel Discussion (Misc queries) | |||
sorting more than 3 keys | Excel Discussion (Misc queries) | |||
Finding a record using multiple combo boxes as my search criteria | Excel Discussion (Misc queries) | |||
Finding last entry in column | Excel Worksheet Functions |