how to find duplicates strings based on specific condition

amir988

New Member
Joined
Nov 20, 2015
Messages
13
i have string data in excel more then 20k cells. in b1 i want to get the message if the all strings of a single cell are matched with any other cell in whole 20k like below. How can i do this...

Screenshot 2022-11-04 212558.jpg


above you can see i have data in A and in B i need details like above.

note: (there is no duplicates in general in A)

How can i do this.... thank,s,,,
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
try this
Excel Formula:
=IF(COUNTIF($A$2:$A$20000,"="&A2)>1,"match","unique")
 
Upvote 0
update: cells contain more strings then then the one whom it matched. for example,

a1 contains 22 strings
a2 contains a1 strings + 13 more strings....
a3 contains only 20 strings of a1 and 10 more.
in b1... it display the message "contain all string in a2"
in b2 it dispplay "unique"
in b3 it also display "unique" (because it does not contain all strings in any cell)
 
Upvote 0

Forum statistics

Threads
1,216,507
Messages
6,131,059
Members
449,616
Latest member
PsychoCube

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