Consolidating and Organizing Data

MisterJ2024

New Member
Joined
Mar 15, 2024
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hello Everyone,

I'm not 100% sure how to use pivot tables or all of the features of excel yet.

I have two screenshots. One shows an example spreadsheet with User Names, Groups, Full Names, and Roles.

What I'd like to do is have the data from that sheet, output onto a second sheet.

I'd like the User Name to be listed, and the group to be listed as well, and the role columns to be filled in with the appropriate roles for each group the user is in.

I manually did an example of what I'd like the output to look like across the board.

Can you advise me on how to do this please?

Thanks!
 

Attachments

  • Screen1.png
    Screen1.png
    58.1 KB · Views: 7
  • Screen2.png
    Screen2.png
    29.1 KB · Views: 7

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.
Using the formula
Excel Formula:
=UNIQUE($A$2:$C$28)
will give you a three column list of all the unique user names, groups, and full names. Then, assuming you put the UNIQUE() formula in cell F2, then using
Excel Formula:
=TRANSPOSE(FILTER($D$2:$D$28,($A$2:$A$28=$F2)*($B$2:$B$28=$G2),"-"))
will return all of the roles associated with the first row. Copy down the TRANSPOSE(FILTER()) function and that should do it.
 
Upvote 0

Forum statistics

Threads
1,215,093
Messages
6,123,069
Members
449,090
Latest member
fragment

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