Problems Pulling Information

Excel_77

Active Member
Joined
Sep 15, 2016
Messages
306
Office Version
  1. 2019
Platform
  1. Windows
Dear All,

Could I please request some help on an issue that I have tried to resolve over the past two days to no avail. In the "Master" tab I have some unique IDs in column A, in column D of the same tab I want to input if they are a Manager, if they are I want to return the value in D1. To find out if they are a Manager the information is in the "source" tab. This is done by matching the Unique ID in column A of the source tab with the Unique ID in the master tab and from this searching fo the cells populated with a unique ID in columns B and C. What is the code for this?

Testing.xlsx
ABCD
1Unique IDDuplicate checkNameManager
200015258921Joe Bloggs
300015258931Bart Simpson
400015258941Home Simpson
500015258951Maggie Simpson
600015258961Marge Simpson
700015258971James Bond
Master
Cell Formulas
RangeFormula
B2:B7B2=COUNTIF(A:A,A2)
Cells with Conditional Formatting
CellConditionCell FormatStop If True
A1:B1Cell ValueduplicatestextNO


Testing.xlsx
ABC
1Unique IDSenior ManagerJunior Manager
20001473341
30001473342
40001473343
50001473344
60001473345
70001525892
80001525893
90001525894
1000015258950001525895
110001525896
1200015258970001525897
130000843034
141010590120
151000150347
1600010328850001032885
Source
Cells with Conditional Formatting
CellConditionCell FormatStop If True
C1Cell ValueduplicatestextNO
C1Cell ValueduplicatestextNO
B1Cell ValueduplicatestextNO
B1Cell ValueduplicatestextNO
A9:A11Cell Valuecontains "2020 Removal - Was 2019 Inclusion"textNO
A9:A11Cell Value="Other"textNO
A9:A11Cell Value="2020 Exclusion - Confirmed"textNO
A9:A11Cell Value="2020 Exclusion - Potential TBC"textNO
A9:A11Cell Value="2020 Removal - Tagging Refresh"textNO
A9:A11Cell Value="2020 Inclusion - Tagging refresh"textNO
A9:A11Cell Value="2020 Inclusion - New"textNO
A9:A11Cell Value="2020 Inclusion - Continuing 2019 Inclusion"textNO
A9:A11Cell Value="Other"textNO
A9:A11Cell Value="2019 Exclusion - Confirmed"textNO
A9:A11Cell Value="2019 Exclusion - Potential TBC"textNO
A9:A11Cell Value="2019 Removal - Tagging Refresh"textNO
A9:A11Cell Valuecontains "2019 Removal - Was 2018 Inclusion"textNO
A9:A11Cell Value="2019 Inclusion - Tagging refresh"textNO
A9:A11Cell Value="2019 Inclusion - New"textNO
A9:A11Cell Value="2019 Inclusion - Continuing 2018 Inclusion"textNO
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
This works based on the example.

Book1
ABCD
1Unique IDDuplicate checkNameManager
215258921Joe Bloggs 
315258931Bart Simpson 
415258941Home Simpson 
515258951Maggie SimpsonManager
615258961Marge Simpson 
715258971James BondManager
Master
Cell Formulas
RangeFormula
B2:B7B2=COUNTIF(A:A,A2)
D2:D7D2=IF(COUNTIF(Source!$A$2:$C$16,A2)>1,D$1,"")
 
Upvote 0
Solution

Forum statistics

Threads
1,214,875
Messages
6,122,040
Members
449,063
Latest member
ak94

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