Find

Zetori

New Member
Joined
Jul 6, 2011
Messages
42
Hiya!

Can't figure this out! so please help :)

I have huge mass of text

Like:
A b c d e
1 Text1 Text2 Text3 Text4 Text5
2 Text6 Text7 Text8 Text9 Text10
3 Text1 Text11 Text12 Text13 Text14

I should find dublicates like in A1 and A3 and allways from the second match (A3) get information from the same row, like C3. In the textfile

Thank You!
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Hi, welcome to MrExcel.

Is this what you require?....


Excel Workbook
ABCDE
1NameColourAnimalCityResult
2Bart SimpsonRedcatBike*
3Lisa SimpsonGreendogBus*
4Marge SimpsonBlackfishTrain*
5Maggie SimpsonWhitecatPlane*
6Homer SimpsonRedPandaTrain*
7Ned FlandersBlackTigerCoach*
8Homer SimpsonWhiteTigerBusTiger
9Tod FlandersRedcowtrike*
10Bart SimpsonRedcatBikecat
Sheet1


The formula in E2 needs to be copied down as far as you require.
What happens if there are more than 2 items the same in column A, do you want to return the data in Column C for all results over 1?
If so, the formula needs to be.....
=IF(COUNTIF($A$2:A2,A2)>1,C2,"")


Ak
 
Upvote 0
Hiya

I have code as shown below.

Code:
[FONT=Verdana][COLOR=black]{=INDEX(named range;SMALL(IF(($B$2=Sheet1!B:B);ROW(Sheet1!B:B)-MIN(ROW(Sheet1!B:B))+1;"");ROW(Sheet1!A2));2)}[/COLOR][/FONT]
I’m trying to find multiple same occurrences and list them all as unique values.

What I would like to add... If there's a way to use multiple values to find those targets. In that code it's trying to find B2 cell. How could I use range like B2:B3 there? Something like this: (didn't work :) )

Code:
[FONT=Verdana][COLOR=black][FONT=Verdana][COLOR=black]=INDEX(named range;SMALL(IF(([B][COLOR=red]OR($B$2:$B$3)=Sheet1!B:B[/COLOR][/B]);ROW(Sheet1!B:B)-MIN(ROW(Sheet1!B:B))+1;"");ROW(Sheet1!A1));2)[/COLOR][/FONT][/COLOR][/FONT]

Couldn't figure this myself, so please help.

Thank You!
 
Upvote 0
Hi zetori,

I'm sorry but I'm unable to help you with that problem.

The best thing that you can do, is start a new thread, provide some sample data and give an example of your expected result.

Good luck.

Ak
 
Upvote 0
Try

{=INDEX(named range;SMALL(IF(($B$2=Sheet1!B:B)*($B$3=Sheet1!B:B);ROW(Sheet1!B:B)-MIN(ROW(Sheet1!B:B))+1;"");ROW(Sheet1!A2));2)}
 
Upvote 0

Forum statistics

Threads
1,224,524
Messages
6,179,310
Members
452,906
Latest member
phanmemchatdakenhupviral

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