Welcome to the { mindfrost82.com } forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

Go Back   { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Microsoft > MS Office > Excel

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 11-28-2007, 12:54 AM
Jim
 
Posts: n/a
filter for unique records?

Hi,

I have a simple spreadsheet that was populated by importing ascii data.
Everything looks normal, but when I attempt to use advance filter for unique
records only, it has no effect. Can anyone think of any reason why this
shouldn't work? It's a simple thing, but very annoying. I'm using excel
2002, SP3.

TIA,

Jim

--
"If you carve yourself to suit everybody, you'll soon whittle yourself away"


Reply With Quote
  #2 (permalink)  
Old 11-28-2007, 01:35 AM
Dave Peterson
 
Posts: n/a
Re: filter for unique records?

Are you filtering on a single column?

Are you sure it's not working? Maybe there's a subtle difference
(trailing/leading/multiple embedded spaces???)

Jim wrote:
>
> Hi,
>
> I have a simple spreadsheet that was populated by importing ascii data.
> Everything looks normal, but when I attempt to use advance filter for unique
> records only, it has no effect. Can anyone think of any reason why this
> shouldn't work? It's a simple thing, but very annoying. I'm using excel
> 2002, SP3.
>
> TIA,
>
> Jim
>
> --
> "If you carve yourself to suit everybody, you'll soon whittle yourself away"


--

Dave Peterson
Reply With Quote
  #3 (permalink)  
Old 11-28-2007, 04:36 AM
Jim
 
Posts: n/a
Re: filter for unique records?

Hi Pete,

yes, I'm filtering on a single column. And there sure doesn't APPEAR to be
any subtle difference; is there a way for me to check those items you've
mentioned?

thanks

Jim

"Dave Peterson" <petersod@verizonXSPAM.net> wrote in message
news:474CC5D0.AD2BF0B@verizonXSPAM.net...
> Are you filtering on a single column?
>
> Are you sure it's not working? Maybe there's a subtle difference
> (trailing/leading/multiple embedded spaces???)
>
> Jim wrote:
>>
>> Hi,
>>
>> I have a simple spreadsheet that was populated by importing ascii data.
>> Everything looks normal, but when I attempt to use advance filter for
>> unique
>> records only, it has no effect. Can anyone think of any reason why this
>> shouldn't work? It's a simple thing, but very annoying. I'm using excel
>> 2002, SP3.
>>
>> TIA,
>>
>> Jim
>>
>> --
>> "If you carve yourself to suit everybody, you'll soon whittle yourself
>> away"

>
> --
>
> Dave Peterson



Reply With Quote
  #4 (permalink)  
Old 11-28-2007, 05:36 AM
Gord Dibben
 
Posts: n/a
Re: filter for unique records?

Jim

What type of data do you have?

Text? Numeric? Dates?

To look for extra spaces try =LEN(cellref) in an unused column and copy down.

Or =ISNUMBER(cellref) and copy down.


Gord Dibben MS Excel MVP

On Tue, 27 Nov 2007 23:36:47 -0500, "Jim" <lakerfan426@yahoo.com> wrote:

>Hi Pete,
>
>yes, I'm filtering on a single column. And there sure doesn't APPEAR to be
>any subtle difference; is there a way for me to check those items you've
>mentioned?
>
>thanks
>
>Jim
>
>"Dave Peterson" <petersod@verizonXSPAM.net> wrote in message
>news:474CC5D0.AD2BF0B@verizonXSPAM.net...
>> Are you filtering on a single column?
>>
>> Are you sure it's not working? Maybe there's a subtle difference
>> (trailing/leading/multiple embedded spaces???)
>>
>> Jim wrote:
>>>
>>> Hi,
>>>
>>> I have a simple spreadsheet that was populated by importing ascii data.
>>> Everything looks normal, but when I attempt to use advance filter for
>>> unique
>>> records only, it has no effect. Can anyone think of any reason why this
>>> shouldn't work? It's a simple thing, but very annoying. I'm using excel
>>> 2002, SP3.
>>>
>>> TIA,
>>>
>>> Jim
>>>
>>> --
>>> "If you carve yourself to suit everybody, you'll soon whittle yourself
>>> away"

>>
>> --
>>
>> Dave Peterson

>


Reply With Quote
  #5 (permalink)  
Old 11-28-2007, 12:18 PM
Dave Peterson
 
Posts: n/a
Re: filter for unique records?

If you filter in place, you'll be able to pick out two cells that look the same
to you, but show up as unique entries (just by eyeballing the visible cells).

Pick out a couple of cells (say A4 and A887) and in an empty cell, put:
=a4=a887
This will come back True if they match. False if they don't.

You can use:
=len(a4)&"--"&len(a887)
to see if the length's differ.

and
=trim(a4)=trim(a887)
to see if trimming any spaces would help.

Chip Pearson has a very nice addin that will help determine what is in each
cell:
http://www.cpearson.com/excel/CellView.aspx

Jim wrote:
>
> Hi Pete,
>
> yes, I'm filtering on a single column. And there sure doesn't APPEAR to be
> any subtle difference; is there a way for me to check those items you've
> mentioned?
>
> thanks
>
> Jim
>
> "Dave Peterson" <petersod@verizonXSPAM.net> wrote in message
> news:474CC5D0.AD2BF0B@verizonXSPAM.net...
> > Are you filtering on a single column?
> >
> > Are you sure it's not working? Maybe there's a subtle difference
> > (trailing/leading/multiple embedded spaces???)
> >
> > Jim wrote:
> >>
> >> Hi,
> >>
> >> I have a simple spreadsheet that was populated by importing ascii data.
> >> Everything looks normal, but when I attempt to use advance filter for
> >> unique
> >> records only, it has no effect. Can anyone think of any reason why this
> >> shouldn't work? It's a simple thing, but very annoying. I'm using excel
> >> 2002, SP3.
> >>
> >> TIA,
> >>
> >> Jim
> >>
> >> --
> >> "If you carve yourself to suit everybody, you'll soon whittle yourself
> >> away"

> >
> > --
> >
> > Dave Peterson


--

Dave Peterson
Reply With Quote
  #6 (permalink)  
Old 11-29-2007, 12:29 AM
Jim
 
Posts: n/a
Re: filter for unique records?

Dave and Gord,

thanks for the tips...problem solved. There were indeed some characters in
there that I couldn't see that were making the difference. Thanks again.

Jim

"Dave Peterson" <petersod@verizonXSPAM.net> wrote in message
news:474D5CA8.F31DA54D@verizonXSPAM.net...
> If you filter in place, you'll be able to pick out two cells that look the
> same
> to you, but show up as unique entries (just by eyeballing the visible
> cells).
>
> Pick out a couple of cells (say A4 and A887) and in an empty cell, put:
> =a4=a887
> This will come back True if they match. False if they don't.
>
> You can use:
> =len(a4)&"--"&len(a887)
> to see if the length's differ.
>
> and
> =trim(a4)=trim(a887)
> to see if trimming any spaces would help.
>
> Chip Pearson has a very nice addin that will help determine what is in
> each
> cell:
> http://www.cpearson.com/excel/CellView.aspx
>
> Jim wrote:
>>
>> Hi Pete,
>>
>> yes, I'm filtering on a single column. And there sure doesn't APPEAR to
>> be
>> any subtle difference; is there a way for me to check those items you've
>> mentioned?
>>
>> thanks
>>
>> Jim
>>
>> "Dave Peterson" <petersod@verizonXSPAM.net> wrote in message
>> news:474CC5D0.AD2BF0B@verizonXSPAM.net...
>> > Are you filtering on a single column?
>> >
>> > Are you sure it's not working? Maybe there's a subtle difference
>> > (trailing/leading/multiple embedded spaces???)
>> >
>> > Jim wrote:
>> >>
>> >> Hi,
>> >>
>> >> I have a simple spreadsheet that was populated by importing ascii
>> >> data.
>> >> Everything looks normal, but when I attempt to use advance filter for
>> >> unique
>> >> records only, it has no effect. Can anyone think of any reason why
>> >> this
>> >> shouldn't work? It's a simple thing, but very annoying. I'm using
>> >> excel
>> >> 2002, SP3.
>> >>
>> >> TIA,
>> >>
>> >> Jim
>> >>
>> >> --
>> >> "If you carve yourself to suit everybody, you'll soon whittle yourself
>> >> away"
>> >
>> > --
>> >
>> > Dave Peterson

>
> --
>
> Dave Peterson



Reply With Quote
Reply

  { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Microsoft > MS Office > Excel


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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

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



All times are GMT. The time now is 05:57 PM.


Powered by vBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.
© 1999-2008 mindfrost82.com v11.0


Sponsors:
Mortgages | Credit Cards | MPAA | Buy Shares | Payday Loans



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114