Is there a way to do this in VBA without inserting a new Column A?

bloomfieldhero

New Member
Joined
Jul 13, 2018
Messages
2
I attached a dropbox link so it’s easy to follow along.



In this roster, I have a sheet labeled setup. In there aremanager names to reference, I want these three managers to be transferred intotheir own workbooks (individually: manager 1, manager 3, manager 5). In Sheet1,Column AR is where you can find the manager names, the rest of the data is justdummy data. I only want the employee data from the criteria in the "Setup" worksheet, nothing else.



I have a script that works when I copy andinsert copied cells into a new Column A (column AR managers), but that forcesextra tedious steps. Can I Just keep the worksheet as-is, and have this scriptreference column AR –to-the Setup worksheet criteria? Or will I have to have my managerlist column be Column A for this to work?

Code:
Sub Main()
  Dim Managers, Manager
  Dim Header As Range, Where As Range, This As Range
  Dim Wb As Workbook
  
  'Prepare
  Application.ScreenUpdating = False
  Application.DisplayAlerts = False
  
  'Refer to the headings
  Set Header = Range("A1").EntireRow
  'Refer to the data in column A
  Set Where = Range("A2", Range("A" & Rows.Count).End(xlUp))
  'Get the managers
  With Worksheets("Setup")
    Set Managers = .Range("A2", .Range("A" & Rows.Count).End(xlUp))
  End With
  'Loop through
  For Each Manager In Managers
    'Find them
    Set This = FindAll(Where, Manager)
    If This Is Nothing Then GoTo Skip
    'Create a new file
    Set Wb = Workbooks.Add(XlWBATemplate.xlWBATWorksheet)
    With Wb
      With .Sheets(1)
        'Copy the header
        Header.Copy .Range("A1")
        'Copy the data
        This.EntireRow.Copy .Range("A2")
      End With
      'Save it
      .SaveAs ThisWorkbook.Path & Application.PathSeparator & Manager & Format(Date, "_mm_dd_yyyy") & "_Roster.xlsx", XlFileFormat.xlOpenXMLWorkbook
      .Close
    End With
Skip:
  Next
  'Done
End Sub

Any idea how to do this?



 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Hi & welcome to MrExcel
How about
Code:
Sub Main()
   Dim Managers As Variant, Manager As Variant
   Dim Wb As Workbook
   
   'Prepare
   Application.ScreenUpdating = False
   Application.DisplayAlerts = False
   
   With Worksheets("Setup")
      Managers = .Range("A1", .Range("A" & Rows.Count).End(xlUp))
   End With
   'Loop through
   With Sheets("Sheet1")
      For Each Manager In Managers
         If .AutoFilterMode Then .AutoFilterMode = False
         If Application.CountIf(.Range("AR:AR"), Manager) > 0 Then
            .Range("A1:BM1").AutoFilter 44, Manager
            Set Wb = Workbooks.Add(XlWBATemplate.xlWBATWorksheet)
            .AutoFilter.Range.Copy Wb.Sheets(1).Range("A1")
            Wb.SaveAs ThisWorkbook.Path & Application.PathSeparator & Manager & format(Date, "_mm_dd_yyyy") & "_Roster.xlsx", XlFileFormat.xlOpenXMLWorkbook
            Wb.Close False
         End If
      Next Manager
      .AutoFilterMode = False
   End With
      Application.DisplayAlerts = False

End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,480
Messages
6,125,047
Members
449,206
Latest member
Healthydogs

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