I sometimes change a series of worksheet titles. Is there a keyboard shortcut to jump to the next TAB (not the next worksheet)? Or from a current worksheet to its own tab?
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
Jump to Worksheet TAB? (Keyboard Shortcut) (2000)
Home » Forums » AskWoody support » Productivity software by function » MS Excel and spreadsheet help » Jump to Worksheet TAB? (Keyboard Shortcut) (2000)
- This topic has 17 replies, 6 voices, and was last updated 21 years, 5 months ago.
Viewing 4 reply threadsAuthorReplies-
WSunkamunka
AskWoody Lounger -
WSTal
AskWoody Lounger -
WSErrolv
AskWoody LoungerJanuary 23, 2004 at 3:44 am #772810Tal,
You can judge for your self between VBA and Macros. VBA is rooted in BASIC, so you’re not exactly replicating {keys}. Figure a simple task, like move a value from one cell to another, then activate the Macro Recorder (Tools>Macro>Record New Macro) and do the task.(You’ll need to make a name, and I suggest use a file you won’t need to save. Place the macro in that file – You’ll be asked for the location.) Next, use the keys and/or mouse to accomplish the task. Finally, keyboard shortcut Alt-F8 to see a list of (your 1) macro. Select it and click Edit. You will be looking at VBA code.
Compared to old style Macros, there’s lots more you can do to automate spreadsheets. It may take a bit to move up the learning curve (keep checking with the Lounge!), but soon you’ll shake the Macro dust off your shoes.
Errol
-
WSErrolv
AskWoody LoungerJanuary 23, 2004 at 3:44 am #772811Tal,
You can judge for your self between VBA and Macros. VBA is rooted in BASIC, so you’re not exactly replicating {keys}. Figure a simple task, like move a value from one cell to another, then activate the Macro Recorder (Tools>Macro>Record New Macro) and do the task.(You’ll need to make a name, and I suggest use a file you won’t need to save. Place the macro in that file – You’ll be asked for the location.) Next, use the keys and/or mouse to accomplish the task. Finally, keyboard shortcut Alt-F8 to see a list of (your 1) macro. Select it and click Edit. You will be looking at VBA code.
Compared to old style Macros, there’s lots more you can do to automate spreadsheets. It may take a bit to move up the learning curve (keep checking with the Lounge!), but soon you’ll shake the Macro dust off your shoes.
Errol
-
-
-
WSTal
AskWoody Lounger
WSunkamunka
AskWoody LoungerWSDougKlippert
AskWoody Lounger-
WSTal
AskWoody Lounger -
WSTal
AskWoody Lounger -
WSJohnBF
AskWoody Lounger -
WSTal
AskWoody Lounger -
WSJohnBF
AskWoody LoungerJanuary 22, 2004 at 10:50 pm #772615Well, that’s a menu sequence to my way of thinking. For a list of keyboard shortcuts for Excel, see Colin’s Star Post 68646.
-
WSJohnBF
AskWoody LoungerJanuary 22, 2004 at 10:50 pm #772616Well, that’s a menu sequence to my way of thinking. For a list of keyboard shortcuts for Excel, see Colin’s Star Post 68646.
-
-
-
WSTal
AskWoody Lounger
-
WSJohnBF
AskWoody LoungerWSDougKlippert
AskWoody LoungerWSduthiet
AskWoody LoungerJanuary 26, 2004 at 9:12 pm #774531Tal:
Attached to this response is a workbook containing 2 Macros for your use.
The first Macro OldTabs will create a new Worksheet called “Tab Control”.
In Column B it will list the current names of each TAB in a workbook
In Column C the Macro will put the same names as in Column B
The user will then use Column C to type in the new desired TAB names. It is very important that Column C has a TAB name
for each worksheet in the workbook or the Macro will not function properly. If you don’t want to change a TAB leave the entry that is already in Column C.
Then run the second Macro NewTabs. This Macro will replace the TAB names with your entries in Column C and Delete Tab Control.Since you are new to Macro’s I suggest the following to use the Macros.
1. Open the attached workbook and save it on your local drive.
2. When needed, open the attached workbook either open the workbook with the tab names you want to change or make it active.
3. Make sure the workbook with the tab names is the Active workbook
4. Then use the shortcut keys ALT + F8 or on the excel menu bar select Tools, Macro, Macro
5. Highligh the Macro you want and hit the Run button.In the long run, you should move the Macros to your personal.xls worksheet and then put custom buttons on your toolbar, attach the Macros to the buttons.
Lastly, below I have included the Macro Code so it can be viewed by the people who view this post.
Regards,
TD
Sub OldTabs()
‘
‘ MyTabs Macro
‘ Macro recorded 1/23/2004
‘
‘Macro Will Create a new worksheet and list all Tab names
‘ Dim MyTabs As Worksheet
Dim MyValue As Integer
Dim WC As Integer
Dim Placeholder As String
Dim r As Integer
‘Procedure MyValue = 10
WC = Worksheets.Count
Worksheets.Item(WC).Activate
Worksheets.Add After:=Worksheets.Item(WC)
ActiveSheet.Name = “Tab Control”
Cells(7, 3).Value = “New Names”
For r = 1 To WC
Worksheets.Item®.Activate
Placeholder = ActiveSheet.Name
Worksheets(“Tab Control”).Activate
Cells(MyValue + r, 2).Value = Placeholder
Cells(MyValue + r, 3).Value = Placeholder
Next r
End SubSub NewTabs()
‘
‘NewTabs Macro
‘Macro recorded 1/26/2004 by duthiet
‘
‘Maco will use list created in Tab Control [Column C]
‘that is then modified by User to rename the Tabs. MyValue = 10
WC = Worksheets.Count
For r = 1 To WC – 1
Worksheets(“Tab Control”).Activate
NewName = Cells(MyValue + r, 3).Value
Worksheets.Item®.Name = NewName
Next r
Application.DisplayAlerts = False
Worksheets(“Tab Control”).Delete
Application.DisplayAlerts = True
End SubViewing 4 reply threads -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Plugged in 24-7
by
CWBillow
1 hour, 36 minutes ago -
Netflix, Apple, BofA websites hijacked with fake help-desk numbers
by
Nibbled To Death By Ducks
1 hour, 29 minutes ago -
Have Copilot there but not taking over the screen in Word
by
CWBillow
12 hours, 33 minutes ago -
Windows 11 blocks Chrome 137.0.7151.68, 137.0.7151.69
by
Alex5723
1 day, 17 hours ago -
Are Macs immune?
by
Susan Bradley
12 hours, 45 minutes ago -
HP Envy and the Function keys
by
CWBillow
1 day ago -
Microsoft : Removal of unwanted drivers from Windows Update
by
Alex5723
2 days, 4 hours ago -
MacOS 26 beta 1 dropped support for Firewire 400/800
by
Alex5723
2 days, 4 hours ago -
Unable to update to version 22h2
by
04om
19 hours, 7 minutes ago -
Windows 11 Insider Preview Build 26100.4482 (24H2) released to Release Preview
by
joep517
2 days, 12 hours ago -
Windows 11 Insider Preview build 27881 released to Canary
by
joep517
2 days, 12 hours ago -
Very Quarrelsome Taskbar!
by
CWBillow
1 day, 21 hours ago -
Move OneNote Notebook OFF OneDrive and make it local
by
CWBillow
3 days, 1 hour ago -
Microsoft 365 to block file access via legacy auth protocols by default
by
Alex5723
2 days, 13 hours ago -
Is your battery draining?
by
Susan Bradley
1 day, 1 hour ago -
The 16-billion-record data breach that no one’s ever heard of
by
Alex5723
2 hours, 5 minutes ago -
Weasel Words Rule Too Many Data Breach Notifications
by
Nibbled To Death By Ducks
3 days, 4 hours ago -
Windows Command Prompt and Powershell will not open as Administrator
by
Gordski
14 hours, 59 minutes ago -
Intel Management Engine (Intel ME) Security Issue
by
PL1
2 days, 13 hours ago -
Old Geek Forced to Update. Buy a Win 11 PC? Yikes! How do I cope?
by
RonE22
2 days, 5 hours ago -
National scam day
by
Susan Bradley
1 day, 12 hours ago -
macOS Tahoe 26 the end of the road for Intel Macs, OCLP, Hackintosh
by
Alex5723
2 days, 8 hours ago -
Cyberattack on some Washington Post journalists’ email accounts
by
Bob99
4 days, 5 hours ago -
Tools to support internet discussions
by
Kathy Stevens
2 days, 18 hours ago -
How get Group Policy to allow specific Driver to download?
by
Tex265
3 days, 21 hours ago -
AI is good sometimes
by
Susan Bradley
4 days, 13 hours ago -
Mozilla quietly tests Perplexity AI as a New Firefox Search Option
by
Alex5723
4 days, 3 hours ago -
Perplexity Pro free for 12 mos for Samsung Galaxy phones
by
Patricia Grace
5 days, 13 hours ago -
June KB5060842 update broke DHCP server service
by
Alex5723
5 days, 11 hours ago -
AMD Ryzen™ Chipset Driver Release Notes 7.06.02.123
by
Alex5723
5 days, 16 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.