Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5
Default excel 2007 convert one sheet into multiples sheets (for excel 2003Compatibility)

Hello everyone,

I am currently working on a research project and I am having issues
converting an excel 2007 file with a single sheet (2000 columns) into
excel 2003.
I would like to break down the main sheet into multiple 256 columns
sheets so that this file can be recognized as a excel 2003 files by
this research software

If anyone has any idea I would really appreciate
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,069
Default excel 2007 convert one sheet into multiples sheets (for excel 2003


I don't use 2007 but as an idea, you could try and copy data to new sheets.

Not sure if I have got the logic righ but an approach like following may
work for you:

Sub SplitData()
Dim NewSh As Worksheet
Dim Col As Integer

Col = 0

Application.ScreenUpdating = False

Do

Set NewSh = Worksheets.Add

NewSh.Move After:=Worksheets(Worksheets.Count)

'sheet with data to be copied
'change name as required
With ThisWorkbook.Worksheets("Sheet1")

.Range(.Cells(1, Col + 1), .Cells(65536, Col + 256)).Copy

End With

NewSh.Paste Destination:=NewSh.Range("A1")

Col = Col + 256
'loop 8 x
Loop Until Col 2048

Application.ScreenUpdating = True

End Sub
--
jb


" wrote:

Hello everyone,

I am currently working on a research project and I am having issues
converting an excel 2007 file with a single sheet (2000 columns) into
excel 2003.
I would like to break down the main sheet into multiple 256 columns
sheets so that this file can be recognized as a excel 2003 files by
this research software

If anyone has any idea I would really appreciate

  #3   Report Post  
Posted to microsoft.public.excel.programming
KC KC is offline
external usenet poster
 
Posts: 55
Default excel 2007 convert one sheet into multiples sheets (for excel 2003 Compatibility)

Send it to me, I convert for you.

wrote in message
...
Hello everyone,

I am currently working on a research project and I am having issues
converting an excel 2007 file with a single sheet (2000 columns) into
excel 2003.
I would like to break down the main sheet into multiple 256 columns
sheets so that this file can be recognized as a excel 2003 files by
this research software

If anyone has any idea I would really appreciate



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Master Spreadsheet with Links to Excel 2003 and Excel 2007 Sheets Alex Zimmerhaven Links and Linking in Excel 0 January 26th 09 03:48 AM
Convert Excel 2007 data forms to Access 2007 ? Cris22149 Excel Discussion (Misc queries) 0 November 19th 08 02:13 AM
Excel 2003 Workbook I want to convert to Excel 2007 pglufkin Excel Discussion (Misc queries) 3 December 18th 06 07:06 PM
Excel 2007 to Excel 2003 (Split data to sheets) BCLivell Excel Discussion (Misc queries) 2 October 27th 06 07:17 PM
How do I convert an Excel workbook that has mulitple sheets into . Converting Excel Excel Worksheet Functions 3 April 25th 05 09:47 PM


All times are GMT +1. The time now is 08:41 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"