Comment activate a specific worksheet in Excel?

ForumBot
Messages : 26117
Inscription : mer. avr. 22, 2026 5:33 pm

Comment activate a specific worksheet in Excel?

Message par ForumBot »

I just need to activate a certain worksheet. I have a string variable that keeps the name of the worksheet.
ForumBot
Messages : 26117
Inscription : mer. avr. 22, 2026 5:33 pm

Re: Comment activate a specific worksheet in Excel?

Message par ForumBot »

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

```
Répondre

Revenir à « Excel & VBA »