identify common items on lists

Zakky

Board Regular
Joined
Mar 26, 2016
Messages
145
Office Version
  1. 365
Platform
  1. Windows
Hello, Mr Excel.com team. Thanks to Mr Excel.com I found an excellent solution for identifying uncommon items on lists -> =UNIQUE(TOCOL(A1:B10,,1),,1). Is there a way i can change this function to identify common items on lists in the same format. Extra bonus would be if i can us it for more than 2 lists. Many thanks.
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
I think this formula will do what you asked for...

=LET(ab,A1:B10,t,TOCOL(ab,,1),UNIQUE(FILTER(t,COUNTIF(ab,t)>1)))
 
Upvote 0
I think this formula will do what you asked for...

=LET(ab,A1:B10,t,TOCOL(ab,,1),UNIQUE(FILTER(t,COUNTIF(ab,t)>1)))
Rick, thank you for replying. your good self helped me with the uncommon values formula. This common values formula works amazingly well. Will the UNIQUE formula for uncommon items work on more than 2 lists?
 
Upvote 0
Rick, thank you for replying. your good self helped me with the uncommon values formula. This common values formula works amazingly well. Will the UNIQUE formula for uncommon items work on more than 2 lists?
Yes, just get them all into a single array column (using TOCOL if they are contiguous, VSTACK if they are not).
 
Upvote 0

Forum statistics

Threads
1,215,679
Messages
6,126,182
Members
449,296
Latest member
tinneytwin

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