Hi,
I am an amateur and have taken the VBA code from Forums and edited a little - but I would appreciate any help that can be provided.
The idea is to parse data inputted weekly into one sheet into different sheets keeping a running total.
Therefore the first run would need to create the sheet tabs and headers and copy the headers.
No matter what I try I cannot get the subsequent data to copy only the relevant data without also copying the heders titles everytime.
I want to post only the row bases on column 2.
I believe this is the line
the full code >
I am an amateur and have taken the VBA code from Forums and edited a little - but I would appreciate any help that can be provided.
The idea is to parse data inputted weekly into one sheet into different sheets keeping a running total.
Therefore the first run would need to create the sheet tabs and headers and copy the headers.
No matter what I try I cannot get the subsequent data to copy only the relevant data without also copying the heders titles everytime.
I want to post only the row bases on column 2.
I believe this is the line
VBA Code:
SHEET_EXISTS:
ws.Range("A" & titlerow & ":M" & lr).Copy Sheets(myarr(i) & "").Range("A" & Rows.Count).End(xlUp).Offset(1)
the full code >
VBA Code:
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
'Filtered Column Number
vcol = 2
'Worksheet to be split
Set ws = Sheets("Sheet1")
lr = ws.Cells(ws.Rows.Count, vcol).End(xlUp).Row
title = "A1:M1"
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 Evaluate("=ISREF('" & myarr(i) & "'!A1)") Then GoTo SHEET_EXISTS
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")
GoTo NEW_SHEET
SHEET_EXISTS:
ws.Range("A" & titlerow & ":M" & lr).Copy Sheets(myarr(i) & "").Range("A" & Rows.Count).End(xlUp).Offset(1)
NEW_SHEET:
Sheets(myarr(i) & "").Columns.AutoFit
Next
'Remove filter
ws.AutoFilterMode = False
ws.Activate
End Sub
Last edited by a moderator: