I think you'll find the problem is with the assignation of sname ..
To prove it you could add
Msgbox sname
directly after
sname = .Shapes("MonthDropDown").ControlFormat.Value
I think you'll find the problem is with the assignation of sname ..
To prove it you could add
Msgbox sname
directly after
sname = .Shapes("MonthDropDown").ControlFormat.Value
Elegant Simplicity............. Not Always
Hi Andy,
Thanks for the update.
I searched some other examples and I found the solution.
Here's what was missing:
Now it works perfectly!![]()
Private Sub CommandButton1_Click() Dim sname As String If Sheets("Sheet1").Shapes("MonthDropDown").ControlFormat = "" Then MsgBox "Please enter the Sheet number!", vbCritical, "No week selected" Exit Sub End If With Sheets("Sheet1").Shapes("MonthDropDown").ControlFormat sname = .List(.Value) End With Sheets(sname).Range("A19:A45").Value = Sheets("Sheet1").Range("AU19:AU45").Value End Sub
Thanks a million. Really appreciated.
Filipe
Hi Andy,
Thanks for the update.
I searched some other examples and I found the solution.
Here's what was missing:
Now it works perfectly!![]()
Private Sub CommandButton1_Click() Dim sname As String If Sheets("Sheet1").Shapes("MonthDropDown").ControlFormat = "" Then MsgBox "Please enter the Sheet number!", vbCritical, "No week selected" Exit Sub End If With Sheets("Sheet1").Shapes("MonthDropDown").ControlFormat sname = .List(.Value) End With Sheets(sname).Range("A19:A45").Value = Sheets("Sheet1").Range("AU19:AU45").Value End Sub
Thanks a million. Really appreciated.
Filipe
Nice job!![]()
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks