Hello,
I've created the folowing sub:
I thought this would work, but I get a warning. Is there another way to set a copy of an existing sheet to a variable?![]()
Dim NewSheet as Worksheet Set NewSheet = OldSheet.Copy
Thank you in advance
Hello,
I've created the folowing sub:
I thought this would work, but I get a warning. Is there another way to set a copy of an existing sheet to a variable?![]()
Dim NewSheet as Worksheet Set NewSheet = OldSheet.Copy
Thank you in advance
Last edited by eclapt; 11-09-2009 at 11:20 AM.
Try this![]()
Sub Macro1() Dim i As Long i = 1 Sheets(i).Copy After:=Sheets(Sheets.Count) 'sheets.Count is now sheets.Count +1 On Error Resume Next Sheets(Sheets.Count).Name = "Copy of sheet " & i End Sub
Looking for great solutions but hate waiting?
Seach this Forum through Google
www.Google.com (e.g. +multiple +IF site:excelforum.com/excel-general/ )
www.Google.com (e.g. +fill +combobox site:excelforum.com/excel-programming/ )
Ave,
Ricardo
Okay thanks, this is useful, becaurse now i can set it to a variable. I suggest it's not possible to do this at once then....
Thanks anyway!
Please explain. many things are possibleI suggest it's not possible to do this at once then....
Maar ff in't Nederlands...
Ik wil die nieuwe sheet (die kopie van de oude) direct aan een variabele koppelen.
Dus wat je normaal met een nieuwe sheet doet:
Deze doet het uiteraard, maar ik wil dan dus een kopie van een oude ipv een nieuwe. Eigenlijk zou ik willen doen:![]()
Dim NewSheet as Worksheet Set NewSheet = ActiveWorkbook.Sheets.Add
Maar dan krijg ik de melding dat dat niet kan.![]()
Dim NewSheet as Worksheet Set NewSheet = ActiveWorkbook.Sheets("bestaandesheet").Copy
Last edited by eclapt; 11-09-2009 at 11:21 AM.
eclapt,
Please take a few minutes to read the frum rules, and then edit both of your posts to add code tags.
Thanks.
Entia non sunt multiplicanda sine necessitate
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks