I just need to activate a certain worksheet. I have a string variable that keeps the name of the worksheet.
+2
A:
Would the following Macro help you?
Sub activateSheet(sheetname As String)
'activates sheet of specific name
Worksheets(sheetname).Activate
End Sub
Basically you want to make use of the .Activate function. Or you can use the .Select function like so:
Sub activateSheet(sheetname As String)
'selects sheet of specific name
Sheets(sheetname).Select
End Sub
moontear
2010-10-25 11:08:16
Your Variants should be strings.
Lance Roberts
2010-10-25 18:20:08
And magically they are. Thanks!
moontear
2010-10-25 18:42:44