Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Is there a formula which will count only visible filtered cells which
equals "FP"? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
One way is to fill a helper column with 1 and use:
=SUBTOTAL(9,column_range) then apply your filters as required, including the column where your "FP" exists. Hope this helps. Pete On Dec 7, 12:43*am, Jim wrote: Is there a formula which will count only visible filtered cells which equals "FP"? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=SUBTOTAL(3,column_range)
"Jim" wrote: Is there a formula which will count only visible filtered cells which equals "FP"? |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Dec 6, 7:20*pm, Pete_UK wrote:
One way is to fill a helper column with 1 and use: =SUBTOTAL(9,column_range) then apply your filters as required, including the column where your "FP" exists. Hope this helps. Pete On Dec 7, 12:43*am, Jim wrote: Is there a formula which will count only visible filtered cells which equals "FP"?- Hide quoted text - - Show quoted text - Sorry but I should have been more clear. A filtered column will have several text codes such as "FP", "PB", "TM" etc. I am looking for a formula which will count each "FP". I can then convert it to count the other text codes as needed. |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try something like this:
The full unfiltered range is B2:B100. =SUMPRODUCT(SUBTOTAL(3,OFFSET(B2:B100,ROW(B2:B100)-ROW(B2),0,1)),--(B2:B100="FP")) -- Biff Microsoft Excel MVP "Jim" wrote in message ... On Dec 6, 7:20 pm, Pete_UK wrote: One way is to fill a helper column with 1 and use: =SUBTOTAL(9,column_range) then apply your filters as required, including the column where your "FP" exists. Hope this helps. Pete On Dec 7, 12:43 am, Jim wrote: Is there a formula which will count only visible filtered cells which equals "FP"?- Hide quoted text - - Show quoted text - Sorry but I should have been more clear. A filtered column will have several text codes such as "FP", "PB", "TM" etc. I am looking for a formula which will count each "FP". I can then convert it to count the other text codes as needed. |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
You can apply the filter on FP as well and then use =subtotal (2,range) -- Regards, Ashish Mathur Microsoft Excel MVP www.ashishmathur.com "Jim" wrote in message ... Is there a formula which will count only visible filtered cells which equals "FP"? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Pivot tables - how do I change default from "count of" to "sum of" | Excel Worksheet Functions | |||
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell | Excel Discussion (Misc queries) | |||
EXCEL allow 2 options on status bar e.g. show "Count" + "Sum" | Excel Discussion (Misc queries) | |||
Count cells that contain "Y" in columnA IF contains"X" in columnB | Excel Worksheet Functions | |||
Count occurences of "1"/"0" (or"TRUE"/"FALSE") in a row w. conditions in the next | New Users to Excel |