#1   Report Post  
daolb
 
Posts: n/a
Default macro/new sheets


my excisting workbook exists out of 4 sheets, one general sheet, and 3
detail information sheets. I want the possibility to create in one
actions duplicates of those 3 sheets, so i get 7 sheets. I may redo
that several times.

I though about macro's to do that. I also want that the name of the
sheet is created automatically, this by adding by the sequence number
+1.

for example

global
use_scrn001
fun_scrn001
stat_scrn001

ACTION COPY

global
use_scrn001
use_scrn002
fun_scrn001
fun_scrn002
stat_scrn001
stat_scrn002


--
daolb
------------------------------------------------------------------------
daolb's Profile: http://www.excelforum.com/member.php...o&userid=24478
View this thread: http://www.excelforum.com/showthread...hreadid=381921

  #2   Report Post  
Bob Phillips
 
Posts: n/a
Default

Dim sh As Worksheet
Dim i As Long
Dim nIndex As Long

stemp = Array("use_scrn", "fun_scrn", "stat_scrn")
For i = 0 To 2
Do
Set sh = Nothing
On Error Resume Next
nIndex = nIndex + 1
Set sh = Worksheets(stemp(i) & Format(nIndex, "000"))
On Error GoTo 0
Loop Until sh Is Nothing
Worksheets.Add(after:=Worksheets(Worksheets.Count) ).Name = _
stemp(i) & Format(nIndex, "000")
Next i



--
HTH

Bob Phillips

"daolb" wrote in
message ...

my excisting workbook exists out of 4 sheets, one general sheet, and 3
detail information sheets. I want the possibility to create in one
actions duplicates of those 3 sheets, so i get 7 sheets. I may redo
that several times.

I though about macro's to do that. I also want that the name of the
sheet is created automatically, this by adding by the sequence number
+1.

for example

global
use_scrn001
fun_scrn001
stat_scrn001

ACTION COPY

global
use_scrn001
use_scrn002
fun_scrn001
fun_scrn002
stat_scrn001
stat_scrn002


--
daolb
------------------------------------------------------------------------
daolb's Profile:

http://www.excelforum.com/member.php...o&userid=24478
View this thread: http://www.excelforum.com/showthread...hreadid=381921



  #3   Report Post  
daolb
 
Posts: n/a
Default


bob,

I'm not a VB specialist. I have pasted your code via tools/macro/visual
basic editor/insert/module

when I press F5 I get a compiler error. the word use_scrn is marked.
Maybe I do something wrong.

thanks in advance

david


--
daolb
------------------------------------------------------------------------
daolb's Profile: http://www.excelforum.com/member.php...o&userid=24478
View this thread: http://www.excelforum.com/showthread...hreadid=381921

  #4   Report Post  
Bob Phillips
 
Posts: n/a
Default

David,

It needs to be within a sub. Did you do that?

Actually, there is a logic flaw in the code. This version is better

Sub NewSheet()
Dim sh As Worksheet
Dim sh2 As Worksheet
Dim i As Long
Dim nIndex As Long

sTemp = Array("use_scrn", "fun_scrn", "stat_scrn")
For Each sh In ActiveWorkbook.Worksheets
For i = 0 To 2
If Left(sh.Name, Len(sTemp(i))) = sTemp(i) Then
nIndex = Right(sh.Name, _
Len(sh.Name) - Len(sTemp(i))) + 1
Set sh2 = Nothing
On Error Resume Next
Set sh2 = Worksheets(sTemp(i) & Format(nIndex, "000"))
On Error GoTo 0
If sh2 Is Nothing Then
Worksheets.Add(after:=Worksheets(Worksheets.Count) ).Name = _
sTemp(i) & Format(nIndex, "000")
End If
End If
Next i
Next sh

End Sub





--
HTH

Bob Phillips

"daolb" wrote in
message ...

bob,

I'm not a VB specialist. I have pasted your code via tools/macro/visual
basic editor/insert/module

when I press F5 I get a compiler error. the word use_scrn is marked.
Maybe I do something wrong.

thanks in advance

david


--
daolb
------------------------------------------------------------------------
daolb's Profile:

http://www.excelforum.com/member.php...o&userid=24478
View this thread: http://www.excelforum.com/showthread...hreadid=381921



  #5   Report Post  
daolb
 
Posts: n/a
Default


bob,

when I excute the macro, excel creates 3 new sheets, but they are
empty. I want to copy also the content, like formules, lay-out,
validation, protection and even VB code.


--
daolb
------------------------------------------------------------------------
daolb's Profile: http://www.excelforum.com/member.php...o&userid=24478
View this thread: http://www.excelforum.com/showthread...hreadid=381921



  #6   Report Post  
Bob Phillips
 
Posts: n/a
Default

Try this then

Sub NewSheet()
Dim sh As Worksheet
Dim sh2 As Worksheet
Dim i As Long
Dim nIndex As Long
Dim sTemp

sTemp = Array("use_scrn", "fun_scrn", "stat_scrn")
For Each sh In ActiveWorkbook.Worksheets
For i = 0 To 2
If Left(sh.Name, Len(sTemp(i))) = sTemp(i) Then
nIndex = Right(sh.Name, _
Len(sh.Name) - Len(sTemp(i))) + 1
Set sh2 = Nothing
On Error Resume Next
Set sh2 = Worksheets(sTemp(i) & Format(nIndex, "000"))
On Error GoTo 0
If sh2 Is Nothing Then
Worksheets(sTemp(i) & "001").Copy
after:=Worksheets(Worksheets.Count)
ActiveSheet.Name = sTemp(i) & Format(nIndex, "000")
End If
End If
Next i
Next sh

End Sub


--
HTH

Bob Phillips

"daolb" wrote in
message ...

bob,

when I excute the macro, excel creates 3 new sheets, but they are
empty. I want to copy also the content, like formules, lay-out,
validation, protection and even VB code.


--
daolb
------------------------------------------------------------------------
daolb's Profile:

http://www.excelforum.com/member.php...o&userid=24478
View this thread: http://www.excelforum.com/showthread...hreadid=381921



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
Copying multiple sheets from one book 2 another and undertake spec Pank Mehta Excel Discussion (Misc queries) 14 March 16th 05 04:41 PM
calculating excel spreadsheet files for pensions and life insurance (including age calculation sheets) RICHARD Excel Worksheet Functions 1 March 15th 05 05:49 PM
Protection and Hiding Sheets JudithJubilee Excel Discussion (Misc queries) 4 March 4th 05 02:16 PM
PROTECTING/UNPROTECTING SHEETS Maureen Excel Discussion (Misc queries) 1 January 6th 05 06:46 PM
Multiple sheets selected twa14 Excel Discussion (Misc queries) 2 December 21st 04 11:15 AM


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