Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default create multiple sheets using info from one

i have an equipment list which has everything from vehicle numbers to engine
horsepower. there is 38 total pieces of equipment that i need to make
individual sheets for. i created another sheet for my individuals and put in
all the formulas to pull off from the master. is there a shortcut to make 37
more. basically every row in the master sheet needs to go into an individual.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,123
Default create multiple sheets using info from one

Hi olson

Start here (for a code example)
http://www.rondebruin.nl/copy5.htm


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"olson_jr" wrote in message ...
i have an equipment list which has everything from vehicle numbers to engine
horsepower. there is 38 total pieces of equipment that i need to make
individual sheets for. i created another sheet for my individuals and put in
all the formulas to pull off from the master. is there a shortcut to make 37
more. basically every row in the master sheet needs to go into an individual.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,203
Default create multiple sheets using info from one

I think this code will do the trick for you. To put the code into your
workbook, open the workbook and press [Alt]+[F11] to open the VB Editor. In
the editor, use Insert -- Module to create an empty code module. Copy the
code below and paste it into that module and make any changes you need to for
the two Const values.

Close the VB editor, choose the sheet with your 38 entries on it and use
Tools--Macro -- Macros to run the code.

Sub MakeNewSheets()
'be sure the 'original' sheet is selected and then
'use Tools -- Macro -- Macros to run this code
'
'change these 2 values to match the
'first and last rows you need to move to
'new, separate sheets
Const firstRow = 2
Const lastRow = 39

Dim myWS As Worksheet
Dim LC As Integer

Set myWS = ActiveSheet
For LC = firstRow To lastRow
'add new sheet at end of workbook
ThisWorkbook.Worksheets.Add after:=Worksheets(Worksheets.Count)
myWS.Range(LC & ":" & LC).Copy
ActiveSheet.Range("A2").PasteSpecial xlAll
Next
Set myWS = Nothing
End Sub


"olson_jr" wrote:

i have an equipment list which has everything from vehicle numbers to engine
horsepower. there is 38 total pieces of equipment that i need to make
individual sheets for. i created another sheet for my individuals and put in
all the formulas to pull off from the master. is there a shortcut to make 37
more. basically every row in the master sheet needs to go into an individual.

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
Create summary sheet of last row of info from other sheets Lisa Excel Worksheet Functions 5 December 14th 07 03:57 PM
How do I create a formula that pulls info. from many sheets within Carolina Girl Excel Discussion (Misc queries) 4 November 9th 07 02:41 PM
Multiple Sheets (Need to create 500 individual sheets in one workbook, pulling DATA Amaxwell Excel Worksheet Functions 4 August 17th 06 06:23 AM
Need info to show on multiple sheets AlienBeans Excel Discussion (Misc queries) 2 August 13th 06 07:45 AM
Using info on multiple Sheets lasca Excel Discussion (Misc queries) 1 April 6th 06 12:54 PM


All times are GMT +1. The time now is 07: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"