Excel question: how to filter...
Excel question: how to filter...
I want to filter out so I only have rows that have the same street name and the same st. no.
An example of what I am talking about is highlighted in yellow
How do I do this?
An example of what I am talking about is highlighted in yellow
How do I do this?
Are you trying to only display that information or just organize it like that? If you are trying to just organize it Tools>Sort and choose the columns to sort by. If you're trying to only display that info, then maybe a query?
i want to display ONLY that info. I already know how to sort, but I dont want any 'uniques' I only want rows that have the same st. no 2+ the same.. not sure if I am explaining myself correctly
Originally Posted by rise
I am not looking for only TWO... I want it to display ALL the rows that have the same street name and st. no.
This list is 11000+ rows long... so using an autofilter would be tedious
This list is 11000+ rows long... so using an autofilter would be tedious

two, as in the two parameters you want to set - the 1) street name and 2) street number
Trending Topics
yes, but I want it to display ALL rows that share the same number same st. name.
perhaps I'm not explaining what I want...I want the spreadsheet to display all the GROUPS of addresses. I dont want any unique addresses.
perhaps I'm not explaining what I want...I want the spreadsheet to display all the GROUPS of addresses. I dont want any unique addresses.

ha, it was your picture that made me think something different.... so you want it to group all addresses together like what you've highlighted.
Perhaps a pivot table would work best.
If you're basically looking to eliminate rows where that address is the only time it appears in the list, then I don't think you can do that in excel without it being a tedious process.
First sort them like you have now.
In a separate column write an "if" formula like:
=if(f7=f6,if(g7=g6,1,0),0)
This will give a 1 in every column with a unique street name. Then sort by that column, so all the ones are at the top and you can separate them from the others.
In a separate column write an "if" formula like:
=if(f7=f6,if(g7=g6,1,0),0)
This will give a 1 in every column with a unique street name. Then sort by that column, so all the ones are at the top and you can separate them from the others.
First sort them so that they are grouped together appropriately...
then use the "OR" formula (formulas > logical > OR) in a blank column and set it so that the street number must equal the cell below it OR the cell above it...
This will return a value of FALSE for every row that is unique. Then just sort by that column and delete the rows with FALSE in them.
then use the "OR" formula (formulas > logical > OR) in a blank column and set it so that the street number must equal the cell below it OR the cell above it...
This will return a value of FALSE for every row that is unique. Then just sort by that column and delete the rows with FALSE in them.
Originally Posted by JimmyCarter
First sort them like you have now.
In a separate column write an "if" formula like:
=if(f7=f6,if(g7=g6,1,0),0)
This will give a 1 in every column with a unique street name. Then sort by that column, so all the ones are at the top and you can separate them from the others.
In a separate column write an "if" formula like:
=if(f7=f6,if(g7=g6,1,0),0)
This will give a 1 in every column with a unique street name. Then sort by that column, so all the ones are at the top and you can separate them from the others.
You'd be much better off importing this into Access and run a quick query. It'll be quicker than trying to get excel to do the same thing
Originally Posted by ccannizz11
First sort them so that they are grouped together appropriately...
then use the "OR" formula (formulas > logical > OR) in a blank column and set it so that the street number must equal the cell below it OR the cell above it...
This will return a value of FALSE for every row that is unique. Then just sort by that column and delete the rows with FALSE in them.
then use the "OR" formula (formulas > logical > OR) in a blank column and set it so that the street number must equal the cell below it OR the cell above it...
This will return a value of FALSE for every row that is unique. Then just sort by that column and delete the rows with FALSE in them.
thanks!!!!
ccanniz11=Official AZ Excel pro!
Originally Posted by ccannizz11
First sort them so that they are grouped together appropriately...
then use the "OR" formula (formulas > logical > OR) in a blank column and set it so that the street number must equal the cell below it OR the cell above it...
This will return a value of FALSE for every row that is unique. Then just sort by that column and delete the rows with FALSE in them.
then use the "OR" formula (formulas > logical > OR) in a blank column and set it so that the street number must equal the cell below it OR the cell above it...
This will return a value of FALSE for every row that is unique. Then just sort by that column and delete the rows with FALSE in them.
Originally Posted by rise
ccanniz11=Official AZ Excel pro!


It took me a while to understand what you were asking for, but I finally got it.... good thing I don't have any work to do.

always glad to help out
Originally Posted by Brewmaster
Prob with this formula is you'll lose the first row that is the same too (f7) even though it's not unique, it isn't the same as the one above ...
You'd be much better off importing this into Access and run a quick query. It'll be quicker than trying to get excel to do the same thing
You'd be much better off importing this into Access and run a quick query. It'll be quicker than trying to get excel to do the same thing
Just ran through it quickly in my head- I was thinking "groups" since that was what he mentioned, forgot about the solo rows.
Thread
Thread Starter
Forum
Replies
Last Post
08_UA7_Gr33k
Member Cars for Sale
13
Feb 11, 2016 02:17 PM
InFaMouSLink
Car Parts for Sale
6
Oct 27, 2015 06:52 PM
08_UA7_Gr33k
Member Cars for Sale
1
Sep 27, 2015 01:56 PM
rboller
3G TL Audio, Bluetooth, Electronics & Navigation
0
Sep 23, 2015 02:49 PM


but this is one of those borderline projects that is probably easier to do in excel anyway.
