View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Max Max is offline
external usenet poster
 
Posts: 9,221
Default formula results in the status bar

The status bar numbers are the counts of rows which satisfy the filtered
criteria

Example 1 - single criteria counts
In C1: =COUNTIF(A:A,"Pete")
will return the same number if you had filtered col A for "Pete"

Example 2 - dual criteria counts
In C1: =SUMPRODUCT((A2:A10="Pete")*(B2:B1010))
will return the same number if you had filtered col A for "Pete" AND col B
for values greater than 10
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Matt S" wrote:
I have a worksheet (not mine) which has filters. When I filter I see the
result ( number of filtered rows) e.g., 11 of 336 rows - in the status bar.
How do I get this feature in a spreadsheet I build from scratch?