VBA to change to a different sheet with a command button

Zimmerman

Well-known Member
Joined
Jan 22, 2009
Messages
663
How can I change sheets based on a userform button. If I have a command button on sheet 1 that when it's clicked a userform pops up. But I also want to automatically change sheets to the current day. So say on sheet 1 there's a command button for Monday, Tuesday, Wednesday, Thursday, Friday and Saturday. If the user clicks the Wednesday button I would like to make that sheet the active sheet and pull up the userform. I'm only doing this so when the userform OK button is clicked the data from it will be placed on that day. Maybe there's an easier way of posting the data from a userform to the correct day but I'm not sure. I just need to make sure the data is placed on the correct day of the week.

Thanks in advance
Excel 2016
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Add something like
Code:
Sheets("Monday").Activate
to the command buttons, changing "Monday" to the name of the sheet
 
Upvote 0
There are several ways you could do this.
But to do it the way you described use a script like this for each day.
And put the script in the proper button.

Code:
Sub Open_Monday()
'Modified  10/8/2019  7:18:14 AM  EDT
Sheets("Monday").Activate
UserForm1.Show Modeless
End Sub
 
Upvote 0

Forum statistics

Threads
1,213,538
Messages
6,114,218
Members
448,554
Latest member
Gleisner2

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top