Is there a way to retrieve the name of the current worksheet in Excel VB?

I need a way to move the name of the currently selected worksheet into a character string. I need to do this so that I can switch back to the worksheet after switching to another one.

lantere2010-05-24T05:20:05Z

Favorite Answer

You can use:
ActiveSheet.Name

This should work to place it in a string:
strWSName = ActiveSheet.Name

MsgBox strWSName
will give a Message Box with the Active Sheet Name.