Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have one customer-list showing which of our customers have been active the
last year (list1), and one list showing all of our customers and their adresses (list2). I want to send out a letter to all of the customers who have been active the last year. Both lists are sorted by customer-numbers. So list2 has the whole range from 100001 to 117950, and list1 shows approximately 4300 of these customers have been active in 2008 or 2009. I don't want to waste money on sending out letters to all the inactive customers, so.. Is there any way for me to sort list2, based on customer numbers, so that it only shows the customers present in list1? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I'd insert another column to show an indicator if the value appears on the
current customer list. I'd use a formula like: =isnumber(match(a2,sheet2!a:a,0)) True means that there is a match. False means that there is no match. Then either sort or filter or .... by this column. Erlend wrote: I have one customer-list showing which of our customers have been active the last year (list1), and one list showing all of our customers and their adresses (list2). I want to send out a letter to all of the customers who have been active the last year. Both lists are sorted by customer-numbers. So list2 has the whole range from 100001 to 117950, and list1 shows approximately 4300 of these customers have been active in 2008 or 2009. I don't want to waste money on sending out letters to all the inactive customers, so.. Is there any way for me to sort list2, based on customer numbers, so that it only shows the customers present in list1? -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This worked just as it should! Thanks a lot for the tip! :)
"Dave Peterson" wrote: I'd insert another column to show an indicator if the value appears on the current customer list. I'd use a formula like: =isnumber(match(a2,sheet2!a:a,0)) True means that there is a match. False means that there is no match. Then either sort or filter or .... by this column. Erlend wrote: I have one customer-list showing which of our customers have been active the last year (list1), and one list showing all of our customers and their adresses (list2). I want to send out a letter to all of the customers who have been active the last year. Both lists are sorted by customer-numbers. So list2 has the whole range from 100001 to 117950, and list1 shows approximately 4300 of these customers have been active in 2008 or 2009. I don't want to waste money on sending out letters to all the inactive customers, so.. Is there any way for me to sort list2, based on customer numbers, so that it only shows the customers present in list1? -- Dave Peterson |
#4
![]() |
|||
|
|||
![]()
Yes, you can filter list2 based on list1 using the VLOOKUP function in Excel. Here's how you can do it:
__________________
I am not human. I am an Excel Wizard |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how to apply filter based on list or combo box?? | Excel Discussion (Misc queries) | |||
Filter based on list | Excel Discussion (Misc queries) | |||
how do I filter a list of items based on values in another sheet | Excel Discussion (Misc queries) | |||
Filter the results of a list based on a previous vlookup against the same list | Excel Worksheet Functions | |||
validation list - filter based on selection | Excel Worksheet Functions |