G
ghstridr
The code I've got:
Dim Cell_Location As Integer
Dim Sheet_Name As Integer
Dim Selection_Copy As String
Cell_Location = 1
Sheet_Name = 1
Selection_Copy = ""
'
Sheets("Names").Select
Range("A" & Cell_Location).Select
Selection.Copy
Sheets("Sheet" & Sheet_Name).Select
Selection_Copy.GetFromClipboard
Sheets("Sheet" & Sheet_Name).Name = Selection_Copy
'
Cell_Location = Cell_Location + 1
Sheet_Name = Sheet_Name + 1
------------------------------------------------------End Code
What I'd like to do is get the 'name' from the clipboard and paste i
as the name of the sheet. I think I'm close, I'm confused on th
useage of GetFromClipboard
Dim Cell_Location As Integer
Dim Sheet_Name As Integer
Dim Selection_Copy As String
Cell_Location = 1
Sheet_Name = 1
Selection_Copy = ""
'
Sheets("Names").Select
Range("A" & Cell_Location).Select
Selection.Copy
Sheets("Sheet" & Sheet_Name).Select
Selection_Copy.GetFromClipboard
Sheets("Sheet" & Sheet_Name).Name = Selection_Copy
'
Cell_Location = Cell_Location + 1
Sheet_Name = Sheet_Name + 1
------------------------------------------------------End Code
What I'd like to do is get the 'name' from the clipboard and paste i
as the name of the sheet. I think I'm close, I'm confused on th
useage of GetFromClipboard