ifvlookedup
New Member
- Joined
- Sep 1, 2020
- Messages
- 3
- Office Version
- 2016
- Platform
- Windows
Hi all,
Thanks again advance for reading my post. I am a beginner at VBA/Macros so I am not sure how difficult my question is (hopefully simple!)
I currently have a macro that filters based on values in a column and then copy/pastes the corresponding rows to a new sheet based on that value. For example, if the column I filtered by had 4 unique values (Apples, Oranges, Pears, Peaches), it would create 4 new tabs in the same workbook but would copy/paste all corresponding rows to those values into their respective tab. This so far has been great and super helpful.
I am trying to take this one step further and only copy/paste select columns for certain values. For example, for "Oranges", I would only want columns C - F, I, and then J - Q copied over but for the rest of the values (Apples, Pears and Peaches), I would like it to continue doing what it is currently doing. I am sure this is possible but I just don't know where to begin. Below is the code that I currently use.
Any help would be greatly appreciated!!
Thanks again advance for reading my post. I am a beginner at VBA/Macros so I am not sure how difficult my question is (hopefully simple!)
I currently have a macro that filters based on values in a column and then copy/pastes the corresponding rows to a new sheet based on that value. For example, if the column I filtered by had 4 unique values (Apples, Oranges, Pears, Peaches), it would create 4 new tabs in the same workbook but would copy/paste all corresponding rows to those values into their respective tab. This so far has been great and super helpful.
I am trying to take this one step further and only copy/paste select columns for certain values. For example, for "Oranges", I would only want columns C - F, I, and then J - Q copied over but for the rest of the values (Apples, Pears and Peaches), I would like it to continue doing what it is currently doing. I am sure this is possible but I just don't know where to begin. Below is the code that I currently use.
Any help would be greatly appreciated!!
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
'This macro splits data into multiple worksheets based on the variables on a column found in Excel.
'An InputBox asks you which columns you'd like to filter by, and it just creates these worksheets.
Application.ScreenUpdating = False
vcol = Application.InputBox(prompt:="Which column would you like to filter by?", title:="Filter column", Default:="1", Type:=1)
Set ws = ActiveSheet
lr = ws.Cells(ws.Rows.Count, vcol).End(xlUp).Row
title = "A1"
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
Application.ScreenUpdating = True
End Sub
Last edited by a moderator: