Create List of Employees Under Each Manager

mcgonma

Board Regular
Joined
Nov 2, 2011
Messages
158
Office Version
  1. 365
  2. 2013
Platform
  1. Windows
I have a list of about 38,000 employees, and in that list is a column of who each employee's Manager is. I want to generate a list of all Managers and identify the employees under them. For example, if Susan Smith (manager) has four employees, I would want to generate a list the employees under Susan.
Susan Smith
employee A
employee B
employee C
employee D​

The column headings of the data are:
  • Column A = Employee Name
  • Column B = Employee ID#
  • Column C = Employee Email Address
  • Column D = Employee Level
  • Column E = Employee’s Manager Name
  • Column F = Employee’s Manager ID#
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
I'll bet it would be awesome! :biggrin: I just wish I knew how to use them. Any guidance would be incredibly appreciated!
 
Upvote 0
Alright begin by highlighting all of your data including the headers

In the ribbon on top go to INSERT

Click on Pivot Table

In the pop up window your range should already be selected, simply click OK

Now in the right side of the screen you will see PivotTable Fields

Select and drag the Manager Name to the Filter Area below

And finally select and drag Employee Name to the Rows Area below

and just simply select the manager you would like to view

Let me know if you need anything else
 
Upvote 0
If you are still interested in a macro, this one should work. Simply change my example Sheet3 (assigned to DataSheet variable) and Sheet4 (assigned to OutSheet variable) sheet names to your actual sheet names for your data sheet and the sheet to be outputted to.
Code:
[table="width: 500"]
[tr]
	[td]Sub ListEmployeeNamesPerManager()
  Dim X As Long, DataSheet As String, OutSheet As String, Dict As Object
  Dim EmpName As Variant, ManName As Variant, Employees As Variant, Manager As Variant
  DataSheet = "Sheet3"
  OutSheet = "Sheet4"
  EmpName = Sheets(DataSheet).Range("A2", Sheets(DataSheet).Cells(Rows.Count, "A").End(xlUp))
  ManName = Sheets(DataSheet).Range("E2", Sheets(DataSheet).Cells(Rows.Count, "E").End(xlUp))
  Set Dict = CreateObject("Scripting.Dictionary")
    For X = 1 To UBound(ManName)
      Dict(ManName(X, 1)) = Dict(ManName(X, 1)) & EmpName(X, 1) & ";"
    Next
    X = 0
    For Each Manager In Dict.Keys
      Employees = Split(Dict(Manager), ";")
      X = X + 1
      With Sheets(OutSheet).Cells(1, X)
        .Value = Manager
        .Font.Bold = True
        .Borders(xlEdgeBottom).Weight = xlThick
      End With
      Sheets(OutSheet).Cells(2, X).Resize(UBound(Employees) + 1) = Application.Transpose(Employees)
    Next
    Sheets(OutSheet).Range("A1").Resize(, Cells(1, Columns.Count).End(xlToLeft).Column).EntireColumn.AutoFit
End Sub[/td]
[/tr]
[/table]
 
Upvote 0
I appreciate you providing the code, but I have no idea what to do with it.
 
Upvote 0
I appreciate you providing the code, but I have no idea what to do with it.

HOW TO INSTALL MACROs
------------------------------------
If you are new to macros, they are easy to install and use. To install it, simply press ALT+F11 to go into the VB editor and, once there, click Insert/Module on its menu bar, then copy/paste the code I posted in Message #5 into the code window that just opened up. That's it.... you are done. To use the macro, go back to the worksheet with your data on it and press ALT+F8, select the macro name (ListEmployeeNamesPerManager) from the list that appears and click the Run button. The macro will execute and perform the action(s) you asked for. If you will need to do this again in this same workbook, and if you are using XL2007 or above, make sure you save your file as an "Excel Macro-Enabled Workbook (*.xlsm) and answer the "do you want to enable macros" question as "Yes" or "OK" (depending on the button label for your version of Excel) the next time you open your workbook.
 
Upvote 0
Thank you, Rick, for being so patient and helpful. I'm not sure what I'm doing wrong, but I think I done busted your great work. I was hoping to attach a screen shot of the error screen I receive when I try to run the macro but I can't seem to manage to find that functionality either.. Sorry to be a pain.
 
Upvote 0
Rick's code worked for me. What version of Excel and what operating system are you using?

What might your maximum number of managers be?

What might your maximum number of employees for a single manager be?

Perhaps you could tell us what the full error message is?
 
Upvote 0
Rick's code worked for me. What version of Excel and what operating system are you using?

What might your maximum number of managers be?

What might your maximum number of employees for a single manager be?

Perhaps you could tell us what the full error message is?
In addition to Peter's questions above, I am wondering if you remembered to do this which I posted in Message #5 ...

"Simply change my example Sheet3 (assigned to DataSheet variable) and Sheet4 (assigned to OutSheet variable) sheet names to your actual sheet names for your data sheet and the sheet to be outputted to."

If you are unsure of what that means, then just tell us the name of the sheet your data is on and then tell us the name of the sheet you want your manager/employee listing to go on and I will physically change the code and repost it for you.

If, on the other hand, you had remembered to change the sheet names on your own, then make sure to answer Peter's questions above.
 
Upvote 0

Forum statistics

Threads
1,214,642
Messages
6,120,701
Members
448,980
Latest member
CarlosWin

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