Make a tab active on a multi page

tony.reynolds

Board Regular
Joined
Jul 8, 2010
Messages
97
I have a WB with a user form that ive been working on for Purchace Orders and keeping track of inventory with three tabs on a multipage

I have #1 tab that has the current order in progress that allows me to select a supplier, select parts from that supplier and delivery method ETC

I have #2 Tab that allows me to Find/edit/create Supplier information

And a #3 tab that allows me to Find/Edit/create Parts Information

What id like is to be able to have an 'EDIT' button beside each part entered on #1 tab to be ordered that simply activates the #3 tab and then I'd write the code that enters the part description into the search box on tab #3 which invokes the rest of the data to be entered ready for editing

Simple but cant see how to do it
 
Last edited:

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Assuming your multipage is named MultiPage1, the code to activate the third tab is

MultiPage1.Value = 2

Pages start at index 0 and increment by 1, which is why to VBA, the third multipage is #2.
 
Upvote 0

Forum statistics

Threads
1,223,247
Messages
6,171,007
Members
452,374
Latest member
keccles

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