Help with identifying duplicates in two worksheets

kristell

New Member
Joined
Dec 12, 2014
Messages
33
Office Version
  1. 365
Platform
  1. Windows
I need to set up a load of users on a new system. I have one workbook with one sheet called All users and another called Active users.

In All users sheet, Column D (rows 2:3474) - has names of everyone ever registered on the system since the year dot!

In Active users sheet, Column G (rows 2:311) shows those who have been active in the last couple of years.

I want to highlight on All Users sheet those who appear on the Active users sheet.

I have tried various ways around this but all seem to come up with an error so would be grateful for any help (or sample spreadsheets) that I could use to solve this issue. Thanking you in advance.
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
You can do this by joining the two sheets in Power Query with a left outer join. If you would like to see a demonstration, then provide sample data from both sheets (anonomize the data) and use XL2BB to load the data so we don't have to recreate it.
 
Upvote 0
Oh - I thought it would be a simple formula. It is sensitive information so I can't share it obviously but will see what I can do to recreate it. This is a work system and not sure if we have any extra functionality like Power Query unless it is a standard Excel feature.
 
Upvote 0
You can use conditional formatting.
Select D2:D3474 & in conditional formatting use this formula
Excel Formula:
=MATCH(D2,'Active Users'!G2:G311,0)
 
Upvote 0
Take a look at the solution I proposed here: Automatic Cell Entry from One Column to Another, which checks to see if a record appears in a list (can be on a different page).

You should be able to use this method to do what you want, as it is essentially the same thing.
 
Upvote 0
Thanks all - I went with this: =COUNTIF('Active users'!$G$2:$G$311,I3417)>0

and it worked brilliantly.
 
Upvote 0
Solution
Glad you were able to implement that solution successfully!
 
Upvote 0

Forum statistics

Threads
1,214,551
Messages
6,120,159
Members
448,948
Latest member
spamiki

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