How to navigate through different tabs using buttons only

Mary7903

New Member
Joined
Dec 27, 2017
Messages
8
Hi,

I have a document with many tabs. I would like to navigate from and to Home tab by just using buttons - no hiperlinks and no code. Could someone help please?
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Hi Mary7903

If your question is how to navigate Excel using the keyboard only, you are referring to keyboard shortcuts.

To tab between worksheets:

left to right -> CTRL + PageDown
right to left -> CTRL + PageUp

For other keyboard shortcuts, please refer to Google. This is a good summary to start with: https://www.guidingtech.com/29760/excel-navigation-shortcut-keys/

Using keyboard shortcuts, rather than the mouse, will save you an enormous amount of time.

However, if you must use the mouse - if you right click over the arrows on the bottom left of the screen, a list of all of the worksheets in the workbook will appear; click on the appropriate one to navigate directly there.

Cheers

pvr928
 
Last edited:
Upvote 0
Hi Mary7903

Then difficult to understand how it can be done without using VBA:

Code:
Option Explicit
Private Sub CommandButton1_Click()
Application.Goto Sheet2.Range("A1"), True
End Sub

Cheers

pvr928
 
Upvote 0
Thanks pvr928. Maybe I should have made myself clearer. I’ve go a spreadsheet with many tabs. On the home tab I would like to have some buttons where I can click and it will take me to each one of the tabs. I believe that I can create basic macros using VBA and assign them to the tab I want to be taken to without much coding? I had no success trying the above:(
 
Upvote 0

Forum statistics

Threads
1,214,553
Messages
6,120,184
Members
448,949
Latest member
keycalinc

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