Find list of names in one cell, pasting value of cell that goes next to it in new worksheet

Looneytn

New Member
Joined
Oct 1, 2014
Messages
3
I have apx 5500 rows. In column H, have different names (many rows with duplicate names). I want to search for all of the ones with the name "double circle", and paste the cell next to it (from column I) into a different work sheet. What formula would I use?
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
What happens if you apply a custom filter on column H ?
If this works you can copy the info in column I to a different sheet ... ??

Let me know ...:confused:

I have apx 5500 rows. In column H, have different names (many rows with duplicate names). I want to search for all of the ones with the name "double circle", and paste the cell next to it (from column I) into a different work sheet. What formula would I use?
 
Upvote 0
No, I wanted to create something a little more repeatable.

Two other answers I received worked

Nesting a find Statement inside an If Statement,

=if(find("Double Circle", H1:H5500,1>0,column I want copied, 0)

or easier for what I really needed

=If("datasheet!$H1="double circle", datasheet!I1,0)

Then I created a macro to delete all rows with Zero
 
Upvote 0

Forum statistics

Threads
1,214,593
Messages
6,120,435
Members
448,962
Latest member
Fenes

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