![]() |
|
|||||||
|
|
Thread Tools | Display Modes |
|
#2
|
|||
|
|||
|
How about
Code:
Sub Create_Name_WorkSheets()
Dim i As Integer
Dim ws As Worksheet
Dim sh As Worksheet
Set ws = Sheets("Template")
Set sh = Sheets("CFD Basic Info")
Application.ScreenUpdating = 0
For i = 5 To Range("A" & Rows.Count).End(xlUp).Row
Sheets("Template").Copy After:=sh
With ActiveSheet
.Name = sh.Range("A" & i).Value
.Range("A2").Value = sh.Range("B" & i).Value
.Range("D2").Value = sh.Range("A" & i).Value
.Range("G2").Value = sh.Range("C" & i).Value
End With
Next i
Create_Hyperlinks
End Sub
https://www.excelguru.ca/content.php?184 Last edited by NoSparks; 10-27-2017 at 07:36 AM. Reason: added the PS |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
Column B Cell 25 of all worksheets copies data found in the lower cells ...
|
rpcalo | Excel | 3 | 03-10-2016 03:38 AM |
Move Data from Master List to Sheets with City Name
|
meggenm | Excel | 3 | 01-28-2016 10:18 AM |
Creating Word document that automatically inputs text into applicable fields,
|
jjfromnj | Word | 3 | 12-04-2015 10:00 AM |
seprate process data from main master list
|
Santhosh AMASL | Excel | 1 | 01-12-2015 09:33 AM |
| Linking Workbooks/Entire Worksheets to Identical in Master | taxacct | Excel | 2 | 10-01-2014 11:22 AM |