PC Review


Reply
Thread Tools Rate Thread

Converting Excel 2007 sheet back down to Excel 2003

 
 
RLN
Guest
Posts: n/a
 
      30th Apr 2009
I have an Excel 2007 file that came from one of our vendors that has
237,000 rows on "Sheet1".

While I have Excel 2007 on a 2nd workstation (alongside of Excel
2003), our finance department only has Excel 2003.

I understand Excel 2003 has approx a 65,000 row limit per sheet.
Divide these rows up into 65k chunks and it comes out to about 3.646
(4) sheets.

Does anyone have a code sample that will take 4 blocks of 65k rows
each from Sheet1 and move them to Sheet2, Sheet3, Sheet4, & Sheet5?

Thanks,
RLN


 
Reply With Quote
 
 
 
 
Ed Sowell
Guest
Posts: n/a
 
      30th Apr 2009
I've never worked with worksheets that big before, but here are some tips
that might work.

First, you need to create the new worksheets:
intInsertIfrontOf = 2 ' or whatever
ActiveWorkbook.Sheets.Add Before:=Sheets(intInsertIfrontOf),
Type:=xlWorksheet
ActiveWorkbook.ActiveSheet.Name = "Some name"

Then you set up a For-loops to copy row-by-row from the original workseet to
the new ones, deleting the
rows as they are copied.

Afterwards, do a "Save as" to Excel 1997-2003 format.


Ed



"RLN" <rlntemp-(E-Mail Removed)> wrote in message
news:e6a14e92-93f5-44aa-8d82-(E-Mail Removed)...
>I have an Excel 2007 file that came from one of our vendors that has
> 237,000 rows on "Sheet1".
>
> While I have Excel 2007 on a 2nd workstation (alongside of Excel
> 2003), our finance department only has Excel 2003.
>
> I understand Excel 2003 has approx a 65,000 row limit per sheet.
> Divide these rows up into 65k chunks and it comes out to about 3.646
> (4) sheets.
>
> Does anyone have a code sample that will take 4 blocks of 65k rows
> each from Sheet1 and move them to Sheet2, Sheet3, Sheet4, & Sheet5?
>
> Thanks,
> RLN
>
>


 
Reply With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Converting MS query from Excel 2003 to Excel 2007 Dale Microsoft Excel Programming 1 13th Mar 2010 04:53 AM
Excel 2007 doesn't display sheet tabs of an Excel 2003 workbook masong@sbcglobal.net Microsoft Excel Discussion 1 27th Aug 2007 04:17 PM
CONVERTING OFFICE 97-2003 EXCEL FILES TO 2007 EXCEL =?Utf-8?B?TWFyeSBBbm4=?= Microsoft Excel Misc 5 8th Aug 2007 10:06 PM
converting office excel 2007 to excel 2003 =?Utf-8?B?bmN0YXJoZWVs?= Microsoft Excel New Users 1 3rd Feb 2007 09:16 PM
Converting a PDF of an Excel sheet back to Excel? Ashley Microsoft Excel Misc 1 24th Sep 2004 02:43 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:45 AM.