Ask Your Question
0

How can the sheet be activated where the userform was initially triggered?

asked 2023-07-16 01:56:35 +0000

plato gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2023-07-16 01:57:02 +0000

qstack gravatar image

You can use the "Activate" method with the variable that holds the initial sheet. For example:

Dim initialSheet as Worksheet
Set initialSheet = ThisWorkbook.Sheets("Sheet1") 'replace "Sheet1" with the name of your initial sheet

'code to open userform and do something

initialSheet.Activate 'activate initial sheet

This will activate the sheet that was assigned to the "initialSheet" variable.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-07-16 01:56:35 +0000

Seen: 25 times

Last updated: Jul 16 '23