Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3
Default Exporting Data Question

Well my conversion of my program to Excel (from FoxPro) is almost complete.
Only a couple of things left to do.

One of them is, I am unsure if this can be done or not. PivotTable is not
an option.

The data is all on one worksheet, it has 12 columns of data.
Column J contains 48 different entries. In FoxPro, I exported these to a
separate tab.

Can this be done?

Any assistance is much appreciated.

Thanks,
Dan


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 79
Default Exporting Data Question

Hi Dan,

The following code assumes your entries in column J start in row 1, change
as necessary.

Sub MakeSheets()
For i=0 to 47
Sheets.Add
ActiveSheet.Name = Sheets(1).Range("J1").Offset(i, 0).Value
Next i
End Sub

HTH, Greg

"Dan Van" wrote in message
...
Well my conversion of my program to Excel (from FoxPro) is almost

complete.
Only a couple of things left to do.

One of them is, I am unsure if this can be done or not. PivotTable is not
an option.

The data is all on one worksheet, it has 12 columns of data.
Column J contains 48 different entries. In FoxPro, I exported these to a
separate tab.

Can this be done?

Any assistance is much appreciated.

Thanks,
Dan




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
Exporting Value Data Brento Excel Discussion (Misc queries) 1 July 18th 06 01:28 PM
Exporting Data Brento Excel Discussion (Misc queries) 1 February 8th 06 02:20 PM
exporting a lot of data lwm11 Excel Worksheet Functions 3 October 28th 05 02:25 PM
exporting data abbylulu2 Excel Discussion (Misc queries) 1 March 19th 05 10:25 AM
Exporting Data..... Al Mackay Excel Programming 0 July 8th 03 06:46 PM


All times are GMT +1. The time now is 11:13 PM.

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"