views:

41

answers:

1

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
Your Variants should be strings.
Lance Roberts
And magically they are. Thanks!
moontear