Related:
- New Tab Copy Paste
- Java update tab missing - Guide
- Opera incognito tab - Guide
- Samsung galaxy tab lock screen while watching video - Guide
- Chrome close tab shortcut android - Guide
- Edge open new tab as popup - Guide
1 response
What happens when you actually record the MACRO and look at the VBA the sheet creates for itself? If you are new to VBA, then I would like to go ahead and encourage you to RECORD your own MACROS, then reverse engineer the code. Then figure out a way to change that STATIC code, into a dynamic solution with the aid of VARIABLES.
It is kinda FUN!
I have recorded this:
Then I would change it to what? If I make the first change, finish it up, OK?
Post back if you need anymore help! Have Fun!
It is kinda FUN!
I have recorded this:
Sub Macro1()
'
' Macro1 Macro
'
'
Sheets("Sheet1").Select
Selection.Copy
Sheets.Add After:=ActiveSheet
ActiveSheet.Paste
Sheets("Sheet2").Select
Sheets("Sheet2").Name = "Here is the new tab name"
End Sub
Then I would change it to what? If I make the first change, finish it up, OK?
Sub Macro1()
'
' Macro1 Macro
'
'
Sheets("Sheet1").Select
Selection.Copy
Sheets.Add After:=ActiveSheet
ActiveSheet.Paste
ActiveSheet.Select
Sheets("Sheet2").Name = "Here is the new tab name"
End Sub
Post back if you need anymore help! Have Fun!