× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



I think I have it figured out with this piece of VBA saved as a macro:

Sub split_up()

Dim rLastCell As Range
Dim rCells As Range
Dim strName As String
Dim lLoop As Long, lCopy As Long
Dim wbNew As Workbook

With ThisWorkbook.Sheets(1)
Set rLastCell = .Cells.Find(What:="*", After:=[A1], SearchDirection:=xlPrevious)

For lLoop = 1 To rLastCell.Row Step 2000
lCopy = lCopy + 1
Set wbNew = Workbooks.Add
.Range(.Cells(lLoop, 1), .Cells(lLoop + 2000, .Columns.Count)).EntireRow.Copy _
Destination:=wbNew.Sheets(1).Range("A1")
wbNew.Close SaveChanges:=True, Filename:="Chunk" & lCopy & "Rows" & lLoop & "-" & lLoop + 2000
Next lLoop
End With


End Sub


What I don't know how to do is save the orininal workbook name instead of "chunk"........ A modification to that line of code would be very cool.

Jim Oberholtzer
Chief Technical Architect
Agile Technology Architects


On 8/15/2011 9:34 AM, Jim Oberholtzer wrote:
I have a very large workbook with one worksheet that has 53K plus rows
in it. I need to split it up into 2000 row worksheets. This is because
the software where the data will be uploaded to has a size limit on it's
up load. (all local servers to me)

Does anyone have a technique or a macro that will split an excel
spreadsheet up into 2000 row sheets?

-- Jim Oberholtzer Chief Technical Architect Agile Technology Architects

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.