Autopopulate sheets from summary page
Closed
cmarie88
Posts
1
Registration date
Tuesday June 13, 2017
Status
Member
Last seen
June 13, 2017
-
Jun 13, 2017 at 03:27 PM
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen January 16, 2023 - Jun 19, 2017 at 11:41 AM
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen January 16, 2023 - Jun 19, 2017 at 11:41 AM
Related:
- Autopopulate sheets from summary page
- Powerpoint summary slide - Guide
- How to copy data from one sheet to another in excel automatically - Guide
- Google sheets change sheet direction - Guide
- Excel master sheet to sub sheets - Guide
- How to take screenshot from excel sheet - Guide
1 reply
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
January 16, 2023
547
Jun 19, 2017 at 11:41 AM
Jun 19, 2017 at 11:41 AM
Hi Cmarie88,
Make sure that the 3 Sold by options and the 4 Project managers have their own sheet already created.
Then run the code below:
Have you tried using the filter option? It basically does the same but keeps the data on the same sheet.
Best regards,
Trowa
Make sure that the 3 Sold by options and the 4 Project managers have their own sheet already created.
Then run the code below:
Sub RunMe() Sheets("Summary").Select For Each cell In Range("B2:B" & Range("B1").End(xlDown).Row) cell.EntireRow.Copy Sheets(cell.Value).Range("A" & Rows.Count).End(xlUp).Offset(1, 0).PasteSpecial Sheets(cell.Offset(0, 1).Value).Range("A" & Rows.Count).End(xlUp).Offset(1, 0).PasteSpecial Next cell Application.CutCopyMode = False End Sub
Have you tried using the filter option? It basically does the same but keeps the data on the same sheet.
Best regards,
Trowa