VBA to populate multiple sheets from master

Closed
jessalyn2293 Posts 1 Registration date Thursday December 21, 2017 Status Member Last seen December 21, 2017 - Updated on Dec 21, 2017 at 01:16 PM
 Blocked Profile - Dec 21, 2017 at 02:49 PM
Hello,

I have a spreadsheet that I use to track my customers bookings. I have multiple customers and multiple bookings. I would like to have my master sheet populate new tabs for each customer. I was able to get the VBA to split the data into separate sheets, but it will not auto-populate based on what I enter into the master. Any ideas what I can do to make this auto populate from the master sheet?

Sub parse_data()
Dim lr As Long
Dim ws As Worksheet
Dim vcol, i As Integer
Dim icol As Long
Dim myarr As Variant
Dim title As String
Dim titlerow As Integer
vcol = 1
Set ws = Sheets("OPEN BOOKINGS")
lr = ws.Cells(ws.Rows.Count, vcol).End(xlUp).Row
title = "A1:Q20"
titlerow = ws.Range(title).Cells(1).Row
icol = ws.Columns.Count
ws.Cells(1, icol) = "Unique"
For i = 2 To lr
On Error Resume Next
If ws.Cells(i, vcol) <> "" And Application.WorksheetFunction.Match(ws.Cells(i, vcol), ws.Columns(icol), 0) = 0 Then
ws.Cells(ws.Rows.Count, icol).End(xlUp).Offset(1) = ws.Cells(i, vcol)
End If
Next
myarr = Application.WorksheetFunction.Transpose(ws.Columns(icol).SpecialCells(xlCellTypeConstants))
ws.Columns(icol).Clear
For i = 2 To UBound(myarr)
ws.Range(title).AutoFilter field:=vcol, Criteria1:=myarr(i) & ""
If Not Evaluate("=ISREF('" & myarr(i) & "'!A1)") Then
Sheets.Add(after:=Worksheets(Worksheets.Count)).Name = myarr(i) & ""
Else
Sheets(myarr(i) & "").Move after:=Worksheets(Worksheets.Count)
End If
ws.Range("A" & titlerow & ":A" & lr).EntireRow.Copy Sheets(myarr(i) & "").Range("A1")
Sheets(myarr(i) & "").Columns.AutoFit
Next
ws.AutoFilterMode = False
ws.Activate
End Sub

Thanks for your time!
Related:

1 response

Blocked Profile
Dec 21, 2017 at 02:49 PM
OK, data manipulation always needs to start with a USER input (such as a button touch). No Module will allow a formula to fire a function or subroutine that will alter the data on the sheet!
0