Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
Hello, (Excel 2003)
Column A contains list of buildings (25+ building names, 1000+ rows) Column D contains a letter indicating if work done ("c") Column E contains text indicating work not done ("n/c") I would like to count the "c"'s grouped by Building name and in a separate cell count the "n/c"'s grouped by Building name. I have tried VLookup with CountIf without any luck. -- Thank-you and all suggestions are appreciated. |
#2
![]() |
|||
|
|||
![]()
You can use sumproduct
check out the link below http://www.xldynamic.com/source/xld.SUMPRODUCT.html -----Original Message----- Hello, (Excel 2003) Column A contains list of buildings (25+ building names, 1000+ rows) Column D contains a letter indicating if work done ("c") Column E contains text indicating work not done ("n/c") I would like to count the "c"'s grouped by Building name and in a separate cell count the "n/c"'s grouped by Building name. I have tried VLookup with CountIf without any luck. -- Thank-you and all suggestions are appreciated. . |
#3
![]() |
|||
|
|||
![]()
=SUMPRODUCT(--(A2:A500="building1"),--(C2:C500="c"))
=SUMPRODUCT(--(A2:A500="building1"),--(D2:D500="n/c")) -- Regards, Peo Sjoblom "Anauna" wrote in message ... Hello, (Excel 2003) Column A contains list of buildings (25+ building names, 1000+ rows) Column D contains a letter indicating if work done ("c") Column E contains text indicating work not done ("n/c") I would like to count the "c"'s grouped by Building name and in a separate cell count the "n/c"'s grouped by Building name. I have tried VLookup with CountIf without any luck. -- Thank-you and all suggestions are appreciated. |
#4
![]() |
|||
|
|||
![]()
Anauna,
Select your data table, then use Data Pivot Table. Drag the header from column A to the row fields area, and your headers from Columns D and E to the data field areas. You should then get a count of each for each building. HTH, Bernie MS Excel MVP "Anauna" wrote in message ... Hello, (Excel 2003) Column A contains list of buildings (25+ building names, 1000+ rows) Column D contains a letter indicating if work done ("c") Column E contains text indicating work not done ("n/c") I would like to count the "c"'s grouped by Building name and in a separate cell count the "n/c"'s grouped by Building name. I have tried VLookup with CountIf without any luck. -- Thank-you and all suggestions are appreciated. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Format cell in column B based on value in the next cell (column c) | Excel Discussion (Misc queries) | |||
How to keep the value of a cell not a function of the other cell | Excel Worksheet Functions | |||
Can I count in an array based on a function? | Excel Worksheet Functions | |||
changing value of a cell based on another cell color | Excel Discussion (Misc queries) | |||
Formula to return cell contents based on multiple conditions | Excel Worksheet Functions |