Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
What is the proper syntax in Excel 2003 for the following:
If cells A6:A20="Tom" and cells B6:B20="a" then count the number of "a" in cells B6:B20. Thanks! |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this:
=Sumproduct((A6:A20="Tom")*(B6:B20="a")*B6:B20) -- HTH, RD ================================================== === Please keep all correspondence within the Group, so all may benefit! ================================================== === "Tom" wrote in message ... What is the proper syntax in Excel 2003 for the following: If cells A6:A20="Tom" and cells B6:B20="a" then count the number of "a" in cells B6:B20. Thanks! |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Drop the last argument ! ! !
=Sumproduct((A6:A20="Tom")*(B6:B20="a")) -- HTH, RD ================================================== === Please keep all correspondence within the Group, so all may benefit! ================================================== === "Tom" wrote in message ... What is the proper syntax in Excel 2003 for the following: If cells A6:A20="Tom" and cells B6:B20="a" then count the number of "a" in cells B6:B20. Thanks! |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I assume you want to know the number of times
that both conditions are met. =SUMPRODUCT((A6:A20="Tom")*(B6:B20="a")) Greetings from New Zealand "Tom" wrote in message ... What is the proper syntax in Excel 2003 for the following: If cells A6:A20="Tom" and cells B6:B20="a" then count the number of "a" in cells B6:B20. Thanks! |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Jan 5, 2:27*pm, "Bill Kuunders" wrote:
I assume you want to know the number of times that both conditions are met. =SUMPRODUCT((A6:A20="Tom")*(B6:B20="a")) Greetings from New Zealand "Tom" wrote in message ... What is the proper syntax in Excel 2003 for the following: If cells A6:A20="Tom" and cells B6:B20="a" then count the number of "a" in cells B6:B20. Thanks!- Hide quoted text - - Show quoted text - If you wish to count only the occurance of "a" in conlum B try countif(B6:B20,"a"). If you need to tie "Tom" and "a" togeather so both conditions must be met try =IF(AND(A6="TOM",B6="A"),"A","") placed in column C then use the countif statement adjusted to column C. Regards BigD |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Question for MVP - install Excel 2003 on MS Server 2003 | Setting up and Configuration of Excel | |||
Crazy Excel 2003 Formula Question | Excel Discussion (Misc queries) | |||
Excel 2003 Question | Excel Discussion (Misc queries) | |||
excel 2003 question | Excel Worksheet Functions | |||
Question about Excel 2003 | Excel Discussion (Misc queries) |