PC Review


Reply
Thread Tools Rate Thread

How to count the number of non blank cells in a filtered list

 
 
Martin C
Guest
Posts: n/a
 
      19th Feb 2008
There must be a way of doing this, but I cannot see it.

I have a spreadsheet with items to be progressed. This list can be filtered
on a number of criteria. The filter currently only works on the first 1000
rows. It is not considered likely that it will ever go above this.

When I filter, Excel tells me there are "x of y records found" where x is
all the filtered items plus any blank rows left until row 999; and y is the
number of records in total (minus any header rows).

How can I get Excel to just give me the number of filtered rows (minus the
blank ones).

What I am basically after, is the value displayed in the bottom right of the
sheet if COUNT is selected and the data highlighted. (The one where SUM is
the default.)

Hope I have made myself clear.

TIA

Martin


 
Reply With Quote
 
 
 
 
Jim Rech
Guest
Posts: n/a
 
      19th Feb 2008
TRy the Subtotal function, e.g.,:

=SUBTOTAL(102,A2:A10)

--
Jim
"Martin C" <(E-Mail Removed)> wrote in message
news:47baf02e$(E-Mail Removed)...
| There must be a way of doing this, but I cannot see it.
|
| I have a spreadsheet with items to be progressed. This list can be
filtered
| on a number of criteria. The filter currently only works on the first 1000
| rows. It is not considered likely that it will ever go above this.
|
| When I filter, Excel tells me there are "x of y records found" where x is
| all the filtered items plus any blank rows left until row 999; and y is
the
| number of records in total (minus any header rows).
|
| How can I get Excel to just give me the number of filtered rows (minus the
| blank ones).
|
| What I am basically after, is the value displayed in the bottom right of
the
| sheet if COUNT is selected and the data highlighted. (The one where SUM is
| the default.)
|
| Hope I have made myself clear.
|
| TIA
|
| Martin
|
|


 
Reply With Quote
 
Gord Dibben
Guest
Posts: n/a
 
      19th Feb 2008
Why do say "only works on the first 1000 rows"?

Autofilter does not count blank rows below your data range.

i.e. data in rows 1 to 500

Select A1:A1000 then autofilter on a value.

The status bar will read x of 500

Not x of 1000

The Count you see on the status bar counts the visible cells only after a
filter.

Depends upon how many columns you have.

If one column the Count will display numbers of visible cells + 1 for header.

If two columns the Count would be 2 x visible cells + 2 for headers.


Gord Dibben MS Excel MVP

On Tue, 19 Feb 2008 15:22:05 -0000, "Martin C" <(E-Mail Removed)> wrote:

>There must be a way of doing this, but I cannot see it.
>
>I have a spreadsheet with items to be progressed. This list can be filtered
>on a number of criteria. The filter currently only works on the first 1000
>rows. It is not considered likely that it will ever go above this.
>
>When I filter, Excel tells me there are "x of y records found" where x is
>all the filtered items plus any blank rows left until row 999; and y is the
>number of records in total (minus any header rows).
>
>How can I get Excel to just give me the number of filtered rows (minus the
>blank ones).
>
>What I am basically after, is the value displayed in the bottom right of the
>sheet if COUNT is selected and the data highlighted. (The one where SUM is
>the default.)
>
>Hope I have made myself clear.
>
>TIA
>
>Martin
>


 
Reply With Quote
 
Martin C
Guest
Posts: n/a
 
      20th Feb 2008
Thanks for the help Jim. Subtotal gave me exactly what I wanted.

Gord, I think I may have been a little vague in my description - so to
clarify for anyone else reading this thread.

I had limited the range of the autofilter to only include the first 1000
rows. That is why I had stated that it only works on the first 1000 rows.
With this setup, the autofilter includes all of the rows in the autofilter
range (including the blank ones that come after the end of the rows that
actually contain data).

After a little experimentation, I noticed the problem that had caused my
initial post.

If I filter on a value in a column, then the status bar will give the
correct number of records found, exactly as you said. However, for one
filter I use a lot, I have a custom filter which checks for "does not
contain" "closed". This gives the problem I have stated. It counts the
number of records in the appropriate column which contain data, as well as
the blank ones. Obviously, it is counting the blank as "does not contain"
"closed", so the status bar gives a misleading value - ish.

I have used Jim's Subtotal to give me what I need and display it in a cell
at the top.

Thanks to you both.

Martin


"Gord Dibben" <gorddibbATshawDOTca> wrote in message
news:(E-Mail Removed)...
> Why do say "only works on the first 1000 rows"?
>
> Autofilter does not count blank rows below your data range.
>
> i.e. data in rows 1 to 500
>
> Select A1:A1000 then autofilter on a value.
>
> The status bar will read x of 500
>
> Not x of 1000
>
> The Count you see on the status bar counts the visible cells only after a
> filter.
>
> Depends upon how many columns you have.
>
> If one column the Count will display numbers of visible cells + 1 for
> header.
>
> If two columns the Count would be 2 x visible cells + 2 for headers.
>
>
> Gord Dibben MS Excel MVP
>
> On Tue, 19 Feb 2008 15:22:05 -0000, "Martin C" <(E-Mail Removed)>
> wrote:
>
>>There must be a way of doing this, but I cannot see it.
>>
>>I have a spreadsheet with items to be progressed. This list can be
>>filtered
>>on a number of criteria. The filter currently only works on the first 1000
>>rows. It is not considered likely that it will ever go above this.
>>
>>When I filter, Excel tells me there are "x of y records found" where x is
>>all the filtered items plus any blank rows left until row 999; and y is
>>the
>>number of records in total (minus any header rows).
>>
>>How can I get Excel to just give me the number of filtered rows (minus the
>>blank ones).
>>
>>What I am basically after, is the value displayed in the bottom right of
>>the
>>sheet if COUNT is selected and the data highlighted. (The one where SUM is
>>the default.)
>>
>>Hope I have made myself clear.
>>
>>TIA
>>
>>Martin
>>

>



 
Reply With Quote
 
Gord Dibben
Guest
Posts: n/a
 
      20th Feb 2008
Martin

I cannot replicate this on my 2003 version.

Select a1:a1000 which includes a1 as header and a2:a500 with "closed" and 500
blanks cells A501:A1000

Filter on "does not contain" "closed"

I get 0 of 499 records.

Excel's filter range extends only to the last contiguous non-blank cell.


Gord

On Wed, 20 Feb 2008 08:32:47 -0000, "Martin C" <(E-Mail Removed)> wrote:

>Thanks for the help Jim. Subtotal gave me exactly what I wanted.
>
>Gord, I think I may have been a little vague in my description - so to
>clarify for anyone else reading this thread.
>
>I had limited the range of the autofilter to only include the first 1000
>rows. That is why I had stated that it only works on the first 1000 rows.
>With this setup, the autofilter includes all of the rows in the autofilter
>range (including the blank ones that come after the end of the rows that
>actually contain data).
>
>After a little experimentation, I noticed the problem that had caused my
>initial post.
>
>If I filter on a value in a column, then the status bar will give the
>correct number of records found, exactly as you said. However, for one
>filter I use a lot, I have a custom filter which checks for "does not
>contain" "closed". This gives the problem I have stated. It counts the
>number of records in the appropriate column which contain data, as well as
>the blank ones. Obviously, it is counting the blank as "does not contain"
>"closed", so the status bar gives a misleading value - ish.
>
>I have used Jim's Subtotal to give me what I need and display it in a cell
>at the top.
>
>Thanks to you both.
>
>Martin
>
>
>"Gord Dibben" <gorddibbATshawDOTca> wrote in message
>news:(E-Mail Removed)...
>> Why do say "only works on the first 1000 rows"?
>>
>> Autofilter does not count blank rows below your data range.
>>
>> i.e. data in rows 1 to 500
>>
>> Select A1:A1000 then autofilter on a value.
>>
>> The status bar will read x of 500
>>
>> Not x of 1000
>>
>> The Count you see on the status bar counts the visible cells only after a
>> filter.
>>
>> Depends upon how many columns you have.
>>
>> If one column the Count will display numbers of visible cells + 1 for
>> header.
>>
>> If two columns the Count would be 2 x visible cells + 2 for headers.
>>
>>
>> Gord Dibben MS Excel MVP
>>
>> On Tue, 19 Feb 2008 15:22:05 -0000, "Martin C" <(E-Mail Removed)>
>> wrote:
>>
>>>There must be a way of doing this, but I cannot see it.
>>>
>>>I have a spreadsheet with items to be progressed. This list can be
>>>filtered
>>>on a number of criteria. The filter currently only works on the first 1000
>>>rows. It is not considered likely that it will ever go above this.
>>>
>>>When I filter, Excel tells me there are "x of y records found" where x is
>>>all the filtered items plus any blank rows left until row 999; and y is
>>>the
>>>number of records in total (minus any header rows).
>>>
>>>How can I get Excel to just give me the number of filtered rows (minus the
>>>blank ones).
>>>
>>>What I am basically after, is the value displayed in the bottom right of
>>>the
>>>sheet if COUNT is selected and the data highlighted. (The one where SUM is
>>>the default.)
>>>
>>>Hope I have made myself clear.
>>>
>>>TIA
>>>
>>>Martin
>>>

>>

>


 
Reply With Quote
 
Martin C
Guest
Posts: n/a
 
      21st Feb 2008
Cannot explain that! I also have Excel 2003. I have tried changing it to
"does not equal" "closed" and get the same result. I even changed my data so
that all the used rows had Closed in the appropriate column, ran the filter
and still had the same problem. Weird.
The formatting for the colum in question is set to General. Any filter I do
give me x of 999 records found.

Maybe my Excel is corrupted somehow. I may try getting the company to
reinstall it some time later.

Thanks for your help.

Martin


"Gord Dibben" <gorddibbATshawDOTca> wrote in message
news(E-Mail Removed)...
> Martin
>
> I cannot replicate this on my 2003 version.
>
> Select a1:a1000 which includes a1 as header and a2:a500 with "closed" and
> 500
> blanks cells A501:A1000
>
> Filter on "does not contain" "closed"
>
> I get 0 of 499 records.
>
> Excel's filter range extends only to the last contiguous non-blank cell.
>
>
> Gord
>
> On Wed, 20 Feb 2008 08:32:47 -0000, "Martin C" <(E-Mail Removed)>
> wrote:
>
>>Thanks for the help Jim. Subtotal gave me exactly what I wanted.
>>
>>Gord, I think I may have been a little vague in my description - so to
>>clarify for anyone else reading this thread.
>>
>>I had limited the range of the autofilter to only include the first 1000
>>rows. That is why I had stated that it only works on the first 1000 rows.
>>With this setup, the autofilter includes all of the rows in the autofilter
>>range (including the blank ones that come after the end of the rows that
>>actually contain data).
>>
>>After a little experimentation, I noticed the problem that had caused my
>>initial post.
>>
>>If I filter on a value in a column, then the status bar will give the
>>correct number of records found, exactly as you said. However, for one
>>filter I use a lot, I have a custom filter which checks for "does not
>>contain" "closed". This gives the problem I have stated. It counts the
>>number of records in the appropriate column which contain data, as well as
>>the blank ones. Obviously, it is counting the blank as "does not contain"
>>"closed", so the status bar gives a misleading value - ish.
>>
>>I have used Jim's Subtotal to give me what I need and display it in a cell
>>at the top.
>>
>>Thanks to you both.
>>
>>Martin
>>
>>
>>"Gord Dibben" <gorddibbATshawDOTca> wrote in message
>>news:(E-Mail Removed)...
>>> Why do say "only works on the first 1000 rows"?
>>>
>>> Autofilter does not count blank rows below your data range.
>>>
>>> i.e. data in rows 1 to 500
>>>
>>> Select A1:A1000 then autofilter on a value.
>>>
>>> The status bar will read x of 500
>>>
>>> Not x of 1000
>>>
>>> The Count you see on the status bar counts the visible cells only after
>>> a
>>> filter.
>>>
>>> Depends upon how many columns you have.
>>>
>>> If one column the Count will display numbers of visible cells + 1 for
>>> header.
>>>
>>> If two columns the Count would be 2 x visible cells + 2 for headers.
>>>
>>>
>>> Gord Dibben MS Excel MVP
>>>
>>> On Tue, 19 Feb 2008 15:22:05 -0000, "Martin C" <(E-Mail Removed)>
>>> wrote:
>>>
>>>>There must be a way of doing this, but I cannot see it.
>>>>
>>>>I have a spreadsheet with items to be progressed. This list can be
>>>>filtered
>>>>on a number of criteria. The filter currently only works on the first
>>>>1000
>>>>rows. It is not considered likely that it will ever go above this.
>>>>
>>>>When I filter, Excel tells me there are "x of y records found" where x
>>>>is
>>>>all the filtered items plus any blank rows left until row 999; and y is
>>>>the
>>>>number of records in total (minus any header rows).
>>>>
>>>>How can I get Excel to just give me the number of filtered rows (minus
>>>>the
>>>>blank ones).
>>>>
>>>>What I am basically after, is the value displayed in the bottom right of
>>>>the
>>>>sheet if COUNT is selected and the data highlighted. (The one where SUM
>>>>is
>>>>the default.)
>>>>
>>>>Hope I have made myself clear.
>>>>
>>>>TIA
>>>>
>>>>Martin
>>>>
>>>

>>

>



 
Reply With Quote
 
Gord Dibben
Guest
Posts: n/a
 
      21st Feb 2008
Maybe your blank cells are not blank?

Do they have formulas that return a blank?

Maybe a space in?

In a cell adjacent to a blank cell enter =LEN(cellref)


Gord

On Thu, 21 Feb 2008 08:36:38 -0000, "Martin C" <(E-Mail Removed)> wrote:

>Cannot explain that! I also have Excel 2003. I have tried changing it to
>"does not equal" "closed" and get the same result. I even changed my data so
>that all the used rows had Closed in the appropriate column, ran the filter
>and still had the same problem. Weird.
>The formatting for the colum in question is set to General. Any filter I do
>give me x of 999 records found.
>
>Maybe my Excel is corrupted somehow. I may try getting the company to
>reinstall it some time later.
>
>Thanks for your help.
>
>Martin
>
>
>"Gord Dibben" <gorddibbATshawDOTca> wrote in message
>news(E-Mail Removed)...
>> Martin
>>
>> I cannot replicate this on my 2003 version.
>>
>> Select a1:a1000 which includes a1 as header and a2:a500 with "closed" and
>> 500
>> blanks cells A501:A1000
>>
>> Filter on "does not contain" "closed"
>>
>> I get 0 of 499 records.
>>
>> Excel's filter range extends only to the last contiguous non-blank cell.
>>
>>
>> Gord
>>
>> On Wed, 20 Feb 2008 08:32:47 -0000, "Martin C" <(E-Mail Removed)>
>> wrote:
>>
>>>Thanks for the help Jim. Subtotal gave me exactly what I wanted.
>>>
>>>Gord, I think I may have been a little vague in my description - so to
>>>clarify for anyone else reading this thread.
>>>
>>>I had limited the range of the autofilter to only include the first 1000
>>>rows. That is why I had stated that it only works on the first 1000 rows.
>>>With this setup, the autofilter includes all of the rows in the autofilter
>>>range (including the blank ones that come after the end of the rows that
>>>actually contain data).
>>>
>>>After a little experimentation, I noticed the problem that had caused my
>>>initial post.
>>>
>>>If I filter on a value in a column, then the status bar will give the
>>>correct number of records found, exactly as you said. However, for one
>>>filter I use a lot, I have a custom filter which checks for "does not
>>>contain" "closed". This gives the problem I have stated. It counts the
>>>number of records in the appropriate column which contain data, as well as
>>>the blank ones. Obviously, it is counting the blank as "does not contain"
>>>"closed", so the status bar gives a misleading value - ish.
>>>
>>>I have used Jim's Subtotal to give me what I need and display it in a cell
>>>at the top.
>>>
>>>Thanks to you both.
>>>
>>>Martin
>>>
>>>
>>>"Gord Dibben" <gorddibbATshawDOTca> wrote in message
>>>news:(E-Mail Removed)...
>>>> Why do say "only works on the first 1000 rows"?
>>>>
>>>> Autofilter does not count blank rows below your data range.
>>>>
>>>> i.e. data in rows 1 to 500
>>>>
>>>> Select A1:A1000 then autofilter on a value.
>>>>
>>>> The status bar will read x of 500
>>>>
>>>> Not x of 1000
>>>>
>>>> The Count you see on the status bar counts the visible cells only after
>>>> a
>>>> filter.
>>>>
>>>> Depends upon how many columns you have.
>>>>
>>>> If one column the Count will display numbers of visible cells + 1 for
>>>> header.
>>>>
>>>> If two columns the Count would be 2 x visible cells + 2 for headers.
>>>>
>>>>
>>>> Gord Dibben MS Excel MVP
>>>>
>>>> On Tue, 19 Feb 2008 15:22:05 -0000, "Martin C" <(E-Mail Removed)>
>>>> wrote:
>>>>
>>>>>There must be a way of doing this, but I cannot see it.
>>>>>
>>>>>I have a spreadsheet with items to be progressed. This list can be
>>>>>filtered
>>>>>on a number of criteria. The filter currently only works on the first
>>>>>1000
>>>>>rows. It is not considered likely that it will ever go above this.
>>>>>
>>>>>When I filter, Excel tells me there are "x of y records found" where x
>>>>>is
>>>>>all the filtered items plus any blank rows left until row 999; and y is
>>>>>the
>>>>>number of records in total (minus any header rows).
>>>>>
>>>>>How can I get Excel to just give me the number of filtered rows (minus
>>>>>the
>>>>>blank ones).
>>>>>
>>>>>What I am basically after, is the value displayed in the bottom right of
>>>>>the
>>>>>sheet if COUNT is selected and the data highlighted. (The one where SUM
>>>>>is
>>>>>the default.)
>>>>>
>>>>>Hope I have made myself clear.
>>>>>
>>>>>TIA
>>>>>
>>>>>Martin
>>>>>
>>>>
>>>

>>

>


 
Reply With Quote
 
Martin C
Guest
Posts: n/a
 
      22nd Feb 2008
I tried the LEN check, and the cells are indeed blank (ie len=0).

I even tried removing all of the conditional formatting (which is applied to
an entire row if appropriate cell in the column in question is set to
'Closed'. This had no affect on the problem either.

The only other thing I can think of is that the data placed into the area in
question is copied into the relevant columns via a macro which pulls out the
relevant data from another area of the sheet. i.e. Data is obtained from a
seperate application, pasted into a particular area in the sheet and the
macro run to process the data. I don't see why pasting data in and then
filtering should have any effect on the problem, but I am out of ideas or
possible information to give you.

Thanks for your help

Martin


"Gord Dibben" <gorddibbATshawDOTca> wrote in message
news:(E-Mail Removed)...
> Maybe your blank cells are not blank?
>
> Do they have formulas that return a blank?
>
> Maybe a space in?
>
> In a cell adjacent to a blank cell enter =LEN(cellref)
>
>
> Gord
>
> On Thu, 21 Feb 2008 08:36:38 -0000, "Martin C" <(E-Mail Removed)>
> wrote:
>
>>Cannot explain that! I also have Excel 2003. I have tried changing it to
>>"does not equal" "closed" and get the same result. I even changed my data
>>so
>>that all the used rows had Closed in the appropriate column, ran the
>>filter
>>and still had the same problem. Weird.
>>The formatting for the colum in question is set to General. Any filter I
>>do
>>give me x of 999 records found.
>>
>>Maybe my Excel is corrupted somehow. I may try getting the company to
>>reinstall it some time later.
>>
>>Thanks for your help.
>>
>>Martin
>>
>>
>>"Gord Dibben" <gorddibbATshawDOTca> wrote in message
>>news(E-Mail Removed)...
>>> Martin
>>>
>>> I cannot replicate this on my 2003 version.
>>>
>>> Select a1:a1000 which includes a1 as header and a2:a500 with "closed"
>>> and
>>> 500
>>> blanks cells A501:A1000
>>>
>>> Filter on "does not contain" "closed"
>>>
>>> I get 0 of 499 records.
>>>
>>> Excel's filter range extends only to the last contiguous non-blank cell.
>>>
>>>
>>> Gord
>>>
>>> On Wed, 20 Feb 2008 08:32:47 -0000, "Martin C" <(E-Mail Removed)>
>>> wrote:
>>>
>>>>Thanks for the help Jim. Subtotal gave me exactly what I wanted.
>>>>
>>>>Gord, I think I may have been a little vague in my description - so to
>>>>clarify for anyone else reading this thread.
>>>>
>>>>I had limited the range of the autofilter to only include the first 1000
>>>>rows. That is why I had stated that it only works on the first 1000
>>>>rows.
>>>>With this setup, the autofilter includes all of the rows in the
>>>>autofilter
>>>>range (including the blank ones that come after the end of the rows that
>>>>actually contain data).
>>>>
>>>>After a little experimentation, I noticed the problem that had caused my
>>>>initial post.
>>>>
>>>>If I filter on a value in a column, then the status bar will give the
>>>>correct number of records found, exactly as you said. However, for one
>>>>filter I use a lot, I have a custom filter which checks for "does not
>>>>contain" "closed". This gives the problem I have stated. It counts the
>>>>number of records in the appropriate column which contain data, as well
>>>>as
>>>>the blank ones. Obviously, it is counting the blank as "does not
>>>>contain"
>>>>"closed", so the status bar gives a misleading value - ish.
>>>>
>>>>I have used Jim's Subtotal to give me what I need and display it in a
>>>>cell
>>>>at the top.
>>>>
>>>>Thanks to you both.
>>>>
>>>>Martin
>>>>
>>>>
>>>>"Gord Dibben" <gorddibbATshawDOTca> wrote in message
>>>>news:(E-Mail Removed)...
>>>>> Why do say "only works on the first 1000 rows"?
>>>>>
>>>>> Autofilter does not count blank rows below your data range.
>>>>>
>>>>> i.e. data in rows 1 to 500
>>>>>
>>>>> Select A1:A1000 then autofilter on a value.
>>>>>
>>>>> The status bar will read x of 500
>>>>>
>>>>> Not x of 1000
>>>>>
>>>>> The Count you see on the status bar counts the visible cells only
>>>>> after
>>>>> a
>>>>> filter.
>>>>>
>>>>> Depends upon how many columns you have.
>>>>>
>>>>> If one column the Count will display numbers of visible cells + 1 for
>>>>> header.
>>>>>
>>>>> If two columns the Count would be 2 x visible cells + 2 for headers.
>>>>>
>>>>>
>>>>> Gord Dibben MS Excel MVP
>>>>>
>>>>> On Tue, 19 Feb 2008 15:22:05 -0000, "Martin C" <(E-Mail Removed)>
>>>>> wrote:
>>>>>
>>>>>>There must be a way of doing this, but I cannot see it.
>>>>>>
>>>>>>I have a spreadsheet with items to be progressed. This list can be
>>>>>>filtered
>>>>>>on a number of criteria. The filter currently only works on the first
>>>>>>1000
>>>>>>rows. It is not considered likely that it will ever go above this.
>>>>>>
>>>>>>When I filter, Excel tells me there are "x of y records found" where x
>>>>>>is
>>>>>>all the filtered items plus any blank rows left until row 999; and y
>>>>>>is
>>>>>>the
>>>>>>number of records in total (minus any header rows).
>>>>>>
>>>>>>How can I get Excel to just give me the number of filtered rows (minus
>>>>>>the
>>>>>>blank ones).
>>>>>>
>>>>>>What I am basically after, is the value displayed in the bottom right
>>>>>>of
>>>>>>the
>>>>>>sheet if COUNT is selected and the data highlighted. (The one where
>>>>>>SUM
>>>>>>is
>>>>>>the default.)
>>>>>>
>>>>>>Hope I have made myself clear.
>>>>>>
>>>>>>TIA
>>>>>>
>>>>>>Martin
>>>>>>
>>>>>
>>>>
>>>

>>

>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I 'count' the number of entrances in filtered cells? Mike Prentice Microsoft Excel Worksheet Functions 2 19th Sep 2008 05:01 PM
count the number of cells which are blank in a excel column shantanu Microsoft C# .NET 2 5th Apr 2007 04:27 AM
Re: How do I count cells containing a criteria in a filtered list BenjieLop Microsoft Excel Worksheet Functions 1 21st Sep 2004 05:49 PM
How do I count cells containing a criteria in a filtered list =?Utf-8?B?YmFrZXJjYQ==?= Microsoft Excel Worksheet Functions 0 21st Sep 2004 04:33 PM
Counting Unique Elements of filtered list with Blank Cells =?Utf-8?B?RE9UamFrZQ==?= Microsoft Excel Worksheet Functions 4 18th Dec 2003 11:30 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 04:30 PM.