If certain 'type' is in col. K have whole row copy to new sheet
Solved/Closed
Dani
-
Jun 20, 2016 at 12:07 PM
vcoolio
vcoolio
- Posts
- 1347
- Registration date
- Thursday July 24, 2014
- Status
- Moderator
- Last seen
- June 10, 2022
Related:
- If certain 'type' is in col. K have whole row copy to new sheet
- Can't type the same letter twice in a row ✓ - Forum - Keyboard
- Typing master pro download - Download
- Which is not a hard disk partition type - Articles
- How to type @ on keyboard - Guide
- How to type e with accent - Guide
2 replies
vcoolio
Jun 21, 2016 at 03:53 AM
- Posts
- 1347
- Registration date
- Thursday July 24, 2014
- Status
- Moderator
- Last seen
- June 10, 2022
Jun 21, 2016 at 03:53 AM
Hello Dani,
The following code may do the task for you:-
It will find the criteria (in this case "Big", "Little", "Medium") in Column K of Sheet1 (which you could name "Master") and transfer the relevant row of data to each individual sheet. The criteria are in an array.
Following is the link to my test work book:-
https://www.dropbox.com/s/hzqz9opl8cl724i/Dani%28Master%20sht%20to%20multi%20shts%2Cautofilter%29.xlsm?dl=0
Click on the button to run the code.
Let us know if its what you were thinking of.
I hope that this helps.
Cheerio,
vcoolio.
The following code may do the task for you:-
Option Explicit Sub TransferData() Application.ScreenUpdating = False Dim ar As Variant Dim i As Integer ar = Array("Big", "Little", "Medium") For i = 0 To UBound(ar) Sheets(ar(i)).UsedRange.ClearContents Sheet1.Range("K2", Sheet1.Range("K" & Sheet1.Rows.Count).End(xlUp)).AutoFilter 1, ar(i) [A2].CurrentRegion.Copy Sheets(ar(i)).Range("A" & Rows.Count).End(3) Sheets(ar(i)).Columns.AutoFit Next i [K2].AutoFilter Application.CutCopyMode = False Application.ScreenUpdating = True MsgBox "Data transfer completed!", vbExclamation, "Status" End Sub
It will find the criteria (in this case "Big", "Little", "Medium") in Column K of Sheet1 (which you could name "Master") and transfer the relevant row of data to each individual sheet. The criteria are in an array.
Following is the link to my test work book:-
https://www.dropbox.com/s/hzqz9opl8cl724i/Dani%28Master%20sht%20to%20multi%20shts%2Cautofilter%29.xlsm?dl=0
Click on the button to run the code.
Let us know if its what you were thinking of.
I hope that this helps.
Cheerio,
vcoolio.
vcoolio
Jun 21, 2016 at 08:54 AM
- Posts
- 1347
- Registration date
- Thursday July 24, 2014
- Status
- Moderator
- Last seen
- June 10, 2022
Jun 21, 2016 at 08:54 AM
Hello Dani,
You have marked the thread as solved. Does it suit your needs?
For the sake of possible future visitors to this site/thread, please leave a reply of some sort confirming that it does suit your needs (or otherwise).
Thank you.
Cheerio,
vcoolio.
You have marked the thread as solved. Does it suit your needs?
For the sake of possible future visitors to this site/thread, please leave a reply of some sort confirming that it does suit your needs (or otherwise).
Thank you.
Cheerio,
vcoolio.