How do I create a new list from previous results?

Nobby

Board Regular
Joined
Feb 25, 2002
Messages
68
A bit long this question - because I don't know exactly what I'm looking for!I have compared 2 lists of names and, using a formula provided by this forum, have identified those people who either do or do not reside on both lists.

So, Col A = List of Names 1
Col B = List of Names 2
Col C = result of this function:
=IF(ISNUMBER(MATCH(A1,$B$1:$B$240,0)),"Yes","No")

I now want to create a list that just shows the Names which have a "No" against them. I could just use Filters, but I need something more permanent.

The following function gave me a result for the 1st entry only:

=VLOOKUP("No",A1:C240,1)

I just want it to move on down the list and identify the next name to be added. So, its a bit like getting it to add extra lines for every new entry it finds.

Can someone point me in the right direction?

ta
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
On 2002-02-27 12:25, Nobby wrote:
A bit long this question - because I don't know exactly what I'm looking for!I have compared 2 lists of names and, using a formula provided by this forum, have identified those people who either do or do not reside on both lists.

So, Col A = List of Names 1
Col B = List of Names 2
Col C = result of this function:
=IF(ISNUMBER(MATCH(A1,$B$1:$B$240,0)),"Yes","No")

I now want to create a list that just shows the Names which have a "No" against them. I could just use Filters, but I need something more permanent.

The following function gave me a result for the 1st entry only:

=VLOOKUP("No",A1:C240,1)

I just want it to move on down the list and identify the next name to be added. So, its a bit like getting it to add extra lines for every new entry it finds.

Can someone point me in the right direction?

ta

Try:

In D1 enter and copy down:

=IF(C1="No",VLOOKUP(A1,$B$1:$B$240,0),"")
 
Upvote 0

Forum statistics

Threads
1,214,571
Messages
6,120,302
Members
448,954
Latest member
EmmeEnne1979

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top