keexcel

New Member
Joined
Nov 16, 2018
Messages
3
I'm trying to compare two list. I have two list that have the same type of data, but they are from different sources. Both files have a list of departments and the permissions each department has. I need to lookup a department name and determine if that dept has a permission listed next to it. Example of data (note this is the same layout in both files):

Human Resources Ability to Change profile
Accounting Ability to Change profile
Marketing Ability to Change profile
Finance Ability to create profile

Second file may have all of the same departments, but not list all of the same permissions. How can I determine if a permissions exist for a specific department in both files? I was trying to use vlookup and countif together, but I have not been able to figure it out.
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Maybe something like this:
Excel Workbook
ABCDEF
1List 1List 2
2Dept.permissionsSame as list twoDeptpermissions
3Human ResourcesAbility to Change profileTRUEAccountingAbility to Change profile
4AccountingAbility to Change profileTRUEFinanceAbility to Change profile
5MarketingAbility to Change profileTRUEMarketingAbility to Change profile
6FinanceAbility to create profileFALSEHuman ResourcesAbility to Change profile
7ProductionAbility to Change profileNo Match
Sheet
 
Upvote 0
Thank you

Maybe something like this:

ABCDEF
1List 1 List 2
2Dept.permissionsSame as list two Deptpermissions
3Human Resources Ability to Change profileTRUE AccountingAbility to Change profile
4AccountingAbility to Change profileTRUE Finance Ability to Change profile
5Marketing Ability to Change profileTRUE Marketing Ability to Change profile
6Finance Ability to create profileFALSE Human Resources Ability to Change profile
7ProductionAbility to Change profileNo Match

<colgroup><col style="width:30px; "><col style="width:161px;"><col style="width:184px;"><col style="width:184px;"><col style="width:41px;"><col style="width:136px;"><col style="width:177px;"></colgroup><tbody>
</tbody>

Spreadsheet Formulas
CellFormula
C3=IFERROR(VLOOKUP($A3,$E$3:$F$6,2,0)=VLOOKUP(A3,A3:$B$6,2,0),"No Match")

<tbody>
</tbody>

<tbody>
</tbody>


Excel tables to the web >> Excel Jeanie HTML 4

Thank you.
 
Upvote 0

Forum statistics

Threads
1,214,574
Messages
6,120,327
Members
448,956
Latest member
Adamsxl

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