Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default Excel Advanced Filter

I have filtered a table of numbers and when running advanced filter for items
"containing" the digits 1683, no rows appear. I know that there are scores of
entries containing this string. All cells are formatted as numbers. Any help,
please?

--
Nick
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 964
Default Excel Advanced Filter

What's your criteria

--


Regards,


Peo Sjoblom

"Nick M" wrote in message
...
I have filtered a table of numbers and when running advanced filter for
items
"containing" the digits 1683, no rows appear. I know that there are scores
of
entries containing this string. All cells are formatted as numbers. Any
help,
please?

--
Nick



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default Excel Advanced Filter

I selected the table for autofilter, and at the head of the part number
column I chose "Custom Autofilter". When the box appeared I chose "contains"
and entered a partial part number in the next box. Sometimes some of the par
numbers appear, sometimes nothing appears.

Does that make sense?
--
Nick


"Peo Sjoblom" wrote:

What's your criteria

--


Regards,


Peo Sjoblom

"Nick M" wrote in message
...
I have filtered a table of numbers and when running advanced filter for
items
"containing" the digits 1683, no rows appear. I know that there are scores
of
entries containing this string. All cells are formatted as numbers. Any
help,
please?

--
Nick




  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default Excel Advanced Filter

So, you were using Autofilter, not the Advanced Filter which you mentioned
in the subject line.

The answer is that the "contains" tests are looking for text strings, not
for numbers.
--
David Biddulph

"Nick M" wrote in message
...
I selected the table for autofilter, and at the head of the part number
column I chose "Custom Autofilter". When the box appeared I chose
"contains"
and entered a partial part number in the next box. Sometimes some of the
par
numbers appear, sometimes nothing appears.

Does that make sense?
--
Nick


"Peo Sjoblom" wrote:

What's your criteria

--


Regards,


Peo Sjoblom

"Nick M" wrote in message
...
I have filtered a table of numbers and when running advanced filter for
items
"containing" the digits 1683, no rows appear. I know that there are
scores
of
entries containing this string. All cells are formatted as numbers. Any
help,
please?

--
Nick






  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 964
Default Excel Advanced Filter

Your subject says advanced filter but you seem to use custom autofilter.
Advanced filter is another function.

If these are true numbers than you can't use contains which is a text
filter.
If they are text and numbers it should work.

If they are numbers then you can use a help column and a formula
assume they start in A2 going down, insert a new column next to column A
and in B2 put

=ISNUMBER(FIND(1683,A2))

copy down and apply filter on all your previous ranges and include the help
then column filter on TRUE

or extract them and filter on 1683

=MID(A2,FIND(1683,A2),4)




--


Regards,


Peo Sjoblom

"Nick M" wrote in message
...
I selected the table for autofilter, and at the head of the part number
column I chose "Custom Autofilter". When the box appeared I chose
"contains"
and entered a partial part number in the next box. Sometimes some of the
par
numbers appear, sometimes nothing appears.

Does that make sense?
--
Nick


"Peo Sjoblom" wrote:

What's your criteria

--


Regards,


Peo Sjoblom

"Nick M" wrote in message
...
I have filtered a table of numbers and when running advanced filter for
items
"containing" the digits 1683, no rows appear. I know that there are
scores
of
entries containing this string. All cells are formatted as numbers. Any
help,
please?

--
Nick








  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default Excel Advanced Filter

It's been a long week and old men can get confused. Anyway, thanks for the
help. I'll study your recommendation and see if I can clear up this issue.
See my reply to David Biddulph as well.

Thanks for the help.

--
Nick


"Peo Sjoblom" wrote:

Your subject says advanced filter but you seem to use custom autofilter.
Advanced filter is another function.

If these are true numbers than you can't use contains which is a text
filter.
If they are text and numbers it should work.

If they are numbers then you can use a help column and a formula
assume they start in A2 going down, insert a new column next to column A
and in B2 put

=ISNUMBER(FIND(1683,A2))

copy down and apply filter on all your previous ranges and include the help
then column filter on TRUE

or extract them and filter on 1683

=MID(A2,FIND(1683,A2),4)




--


Regards,


Peo Sjoblom

"Nick M" wrote in message
...
I selected the table for autofilter, and at the head of the part number
column I chose "Custom Autofilter". When the box appeared I chose
"contains"
and entered a partial part number in the next box. Sometimes some of the
par
numbers appear, sometimes nothing appears.

Does that make sense?
--
Nick


"Peo Sjoblom" wrote:

What's your criteria

--


Regards,


Peo Sjoblom

"Nick M" wrote in message
...
I have filtered a table of numbers and when running advanced filter for
items
"containing" the digits 1683, no rows appear. I know that there are
scores
of
entries containing this string. All cells are formatted as numbers. Any
help,
please?

--
Nick






  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 527
Default Excel Advanced Filter

Nick

you say 'containing' so a slight change to Peo's formula may (or may not)
help.

=ISNUMBER(SEARCH({8,6,3,1},A2)) will find a greater number in fact any
comination of 8,6,3,1 the following list will be returned as TRUE

1683, 8631, 6831, 3186, 3186, 15168324, 56813

Hope this helps.

Peter Atherton

"Nick M" wrote:

It's been a long week and old men can get confused. Anyway, thanks for the
help. I'll study your recommendation and see if I can clear up this issue.
See my reply to David Biddulph as well.

Thanks for the help.

--
Nick


"Peo Sjoblom" wrote:

Your subject says advanced filter but you seem to use custom autofilter.
Advanced filter is another function.

If these are true numbers than you can't use contains which is a text
filter.
If they are text and numbers it should work.

If they are numbers then you can use a help column and a formula
assume they start in A2 going down, insert a new column next to column A
and in B2 put

=ISNUMBER(FIND(1683,A2))

copy down and apply filter on all your previous ranges and include the help
then column filter on TRUE

or extract them and filter on 1683

=MID(A2,FIND(1683,A2),4)




--


Regards,


Peo Sjoblom

"Nick M" wrote in message
...
I selected the table for autofilter, and at the head of the part number
column I chose "Custom Autofilter". When the box appeared I chose
"contains"
and entered a partial part number in the next box. Sometimes some of the
par
numbers appear, sometimes nothing appears.

Does that make sense?
--
Nick


"Peo Sjoblom" wrote:

What's your criteria

--


Regards,


Peo Sjoblom

"Nick M" wrote in message
...
I have filtered a table of numbers and when running advanced filter for
items
"containing" the digits 1683, no rows appear. I know that there are
scores
of
entries containing this string. All cells are formatted as numbers. Any
help,
please?

--
Nick






Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel advanced filter problem CAM Excel Discussion (Misc queries) 0 February 22nd 08 01:16 AM
How to clear advanced filter in excel Prakash Shukla Excel Discussion (Misc queries) 1 March 16th 07 02:02 PM
using advanced filter in excel bschrand Excel Discussion (Misc queries) 1 March 14th 06 09:16 AM
"Criteria Range" in the "Data/Filter/Advanced Filter" to select Du TC Excel Worksheet Functions 1 May 12th 05 02:06 AM
Can Excel advanced filter be used in "and NOT" mode Robert Excel Worksheet Functions 1 January 27th 05 02:57 PM


All times are GMT +1. The time now is 05:14 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"