• Skip to main content
  • Skip to header right navigation
  • Skip to site footer

My Online Training Hub

Learn Dashboards, Excel, Power BI, Power Query, Power Pivot

  • Courses
  • Pricing
    • Free Courses
    • Power BI Course
    • Excel Power Query Course
    • Power Pivot and DAX Course
    • Excel Dashboard Course
    • Excel PivotTable Course – Quick Start
    • Advanced Excel Formulas Course
    • Excel Expert Advanced Excel Training
    • Excel Tables Course
    • Excel, Word, Outlook
    • Financial Modelling Course
    • Excel PivotTable Course
    • Excel for Customer Service Professionals
    • Excel for Operations Management Course
    • Excel for Decision Making Under Uncertainty Course
    • Excel for Finance Course
    • Excel Analysis ToolPak Course
    • Multi-User Pricing
  • Resources
    • Free Downloads
    • Excel Functions Explained
    • Excel Formulas
    • Excel Add-ins
    • IF Function
      • Excel IF Statement Explained
      • Excel IF AND OR Functions
      • IF Formula Builder
    • Time & Dates in Excel
      • Excel Date & Time
      • Calculating Time in Excel
      • Excel Time Calculation Tricks
      • Excel Date and Time Formatting
    • Excel Keyboard Shortcuts
    • Excel Custom Number Format Guide
    • Pivot Tables Guide
    • VLOOKUP Guide
    • ALT Codes
    • Excel VBA & Macros
    • Excel User Forms
    • VBA String Functions
  • Members
    • Login
  • Blog
  • Excel Webinars
  • Excel Forum
    • Register as Forum Member
  • Login

Create new workbooks from multiple rows in another workbook|VBA & Macros|Excel Forum|My Online Training Hub

You are here: Home / Create new workbooks from multiple rows in another workbook|VBA & Macros|Excel Forum|My Online Training Hub
Avatar
sp_LogInOut Log In sp_Registration Register
sp_Search Search
Advanced Search
Search
Forum Scope




Match



Forum Options



Minimum search word length is 3 characters - maximum search word length is 84 characters
sp_Search Search
sp_RankInfo
Lost password?
sp_CrumbsHome HomeExcel ForumVBA & MacrosCreate new workbooks from multiple …
sp_PrintTopic sp_TopicIcon
Create new workbooks from multiple rows in another workbook
Avatar
Chris Charlton

New Member
Members
Level 0
Forum Posts: 2
Member Since:
January 12, 2020
sp_UserOfflineSmall Offline
1
January 12, 2020 - 8:36 am
sp_Permalink sp_Print

I have a Summary workbook which contains a worksheet ("S") with multiple rows of data.

I have a default workbook (default) containing 2 worksheets, "plus" and "minus".

I would like to create a macro that:

1. for every row in the Summary worksheet ("S"), it will open the default workbook and save it as a new workbook with the name listed in Column A, row 1. Then a new workbook with the name A2 and so on, for all rows that have data.

2.Before saving and closing the new workbooks, it should copy range, A10-A20 and paste and transpose to sheet "plus", cell C1, and copy range A30-A40 to sheet "minus", cell C1 , paste and transpose.

3. Save and close new workbook with name of cell A1.

4. Loop for all existing rows in worksheet "A".

 

Result: New workbooks will be created for all filled rows in the Summary, Sheet "A", and all the chosen data will be copied from the rows to the new workbooks and pasted into the worksheets.

sp_AnswersTopicSeeAnswer See Answer
Avatar
Purfleet
England
Member
Members


Trusted Members
Level 4
Forum Posts: 414
Member Since:
December 20, 2019
sp_UserOfflineSmall Offline
2
January 13, 2020 - 6:53 am
sp_Permalink sp_Print

Hi Chris

Can you supply a sample worksheet so we dont have to spend time recreating data?

Purfleet

sp_AnswersTopicAnswer
Answers Post
Avatar
Chris Charlton

New Member
Members
Level 0
Forum Posts: 2
Member Since:
January 12, 2020
sp_UserOfflineSmall Offline
3
January 13, 2020 - 8:02 am
sp_Permalink sp_Print sp_EditHistory

Hello ,

thank you for replying. I managed to create a code that works for me needs. I am sure it is not the perfect solution but it works.

Sub Main()

Application.DisplayAlerts = False
Application.ScreenUpdating = False

'On Error GoTo PROC_ERROR

Dim ThisWorkbook As Workbook, NewBook As Workbook
Dim ThisWorksheet As Worksheet, NewWs As Worksheet
Dim i As Integer, j As Integer, k As Integer, ExportCount As Integer
Dim Filename As String

Set ThisWorkbook = Application.Workbooks("Client Summary.xlsm")
Set ThisWorksheet = ThisWorkbook.Sheets("Summary")

ExportCount = 0

For i = 1 To 10
If ThisWorksheet.Cells(i, 1) <> "" Then

Range(Cells(i, 2), Cells(i, 12)).copy

Workbooks.Open Filename:="C:\Users\xx1\Dropbox\SHARE FOLDER\Master Client Profile.xlsx"
Set NewBook = Application.Workbooks("Master Client Profile.xlsx")

Sheets("CONTACT SHEETS").Select
Range("C2").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=True

ThisWorkbook.Activate
Sheets("Summary").Select

Range(Cells(i, 2), Cells(i, 6)).copy
NewBook.Activate
Sheets("CONTACT BACKGROUND").Select
Range("A4").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=True

With NewBook
.Title = ThisWorksheet.Cells(i, 1)
.SaveAs "C:\Users\xx1\Dropbox\SHARE FOLDER\" & ThisWorksheet.Cells(i, 1) & ".xlsx"
.Close
End With

ExportCount = ExportCount + 1

End If
Next i
End Sub

sp_Feed
Go to top
Forum Timezone: Australia/Brisbane
Most Users Ever Online: 245
Currently Online: Martin Delloca, Tracy English
Guest(s) 9
Currently Browsing this Page:
1 Guest(s)
Top Posters:
SunnyKow: 1432
Anders Sehlstedt: 880
Purfleet: 414
Frans Visser: 346
David_Ng: 306
lea cohen: 237
Jessica Stewart: 219
A.Maurizio: 213
Aye Mu: 201
jaryszek: 183
Newest Members:
Rob Rooth
Tom Lewis
Jennifer Rodriguez-Avila
Khaled Ibrahim
Kiran Supekar
Lisa Myers
Ronald White
Ginette Guevremont
Taryn Ambrosi
Mark Davenport
Forum Stats:
Groups: 3
Forums: 24
Topics: 6531
Posts: 28604

 

Member Stats:
Guest Posters: 49
Members: 32822
Moderators: 2
Admins: 4
Administrators: Mynda Treacy, Philip Treacy, Catalin Bombea, FT
Moderators: Velouria, Riny van Eekelen
© Simple:Press —sp_Information

Sidebar

Blog Categories

  • Excel
  • Excel Charts
  • Excel Dashboard
  • Excel Formulas
  • Excel Office Scripts
  • Excel PivotTables
  • Excel Shortcuts
  • Excel VBA
  • General Tips
  • Online Training
  • Outlook
  • Power Apps
  • Power Automate
  • Power BI
  • Power Pivot
  • Power Query
microsoft mvp logo
trustpilot excellent rating
Secured by Sucuri Badge
MyOnlineTrainingHub on YouTube Mynda Treacy on Linked In Mynda Treacy on Instagram Mynda Treacy on Twitter Mynda Treacy on Pinterest MyOnlineTrainingHub on Facebook

Sign up to our newsletter and join over 400,000
others who learn Excel and Power BI with us.

 

Company

  • About My Online Training Hub
  • Disclosure Statement
  • Frequently Asked Questions
  • Guarantee
  • Privacy Policy
  • Terms & Conditions
  • Testimonials
  • Become an Affiliate
  • Sponsor Our Newsletter

Support

  • Contact
  • Forum
  • Helpdesk - For Technical Issues

Copyright © 2023 · My Online Training Hub · All Rights Reserved. Microsoft and the Microsoft Office logo are trademarks or registered trademarks of Microsoft Corporation in the United States and/or other countries. Product names, logos, brands, and other trademarks featured or referred to within this website are the property of their respective trademark holders.