Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This is a question similiar to ROBERT's Dated 5/18/2004
Is it possible to have two criteria for a countif statement like (COUNTIF(A1:A10,="X"))or(COUNTIF (A1:A10,"T")) -Travi -- Message posted from http://www.ExcelForum.com |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I don't have excel open just now, but
=SUM( (A1:A10="X") * (B1:B10="Y") ) your formula would be simpler: = COUNTIF(A1:A10,"X") + COUNTIF (A1:A10,"T") -- Patrick Molloy Microsoft Excel MVP --------------------------------- I Feel Great! --------------------------------- "tvbrower " wrote in message ... This is a question similiar to ROBERT's Dated 5/18/2004 Is it possible to have two criteria for a countif statement like (COUNTIF(A1:A10,="X"))or(COUNTIF (A1:A10,"T")) -Travis --- Message posted from http://www.ExcelForum.com/ |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Travis,
Use two COUNTIFs and add the results. E.g., =COUNTIF(A1:A10,"X")+COUNTIF(A1:A10,"T") -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "tvbrower " wrote in message ... This is a question similiar to ROBERT's Dated 5/18/2004 Is it possible to have two criteria for a countif statement like (COUNTIF(A1:A10,="X"))or(COUNTIF (A1:A10,"T")) -Travis --- Message posted from http://www.ExcelForum.com/ |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Chip Pearson wrote:
Travis, Use two COUNTIFs and add the results. E.g., =COUNTIF(A1:A10,"X")+COUNTIF(A1:A10,"T") Or =SUM(COUNTIF(A1:A10,{"T","X"})) Alan Beban |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Countif Function w/ multiple Criteria | Excel Worksheet Functions | |||
Using the CountIf function with multiple criteria? | Excel Worksheet Functions | |||
COUNTIF or SUM function (Multiple criteria) HELP!! | Excel Worksheet Functions | |||
countif function with multiple criteria | Excel Discussion (Misc queries) | |||
EXCEL multiple criteria in countif function | Excel Programming |