Pressing space bar to navigate tabs

fireslguk

Active Member
Joined
Nov 11, 2005
Messages
295
Is this even possible vba code :-

pressing space bar to navigate sheet tabs?

Selects and displays next sheet each press
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
This is possible. But you can't do it with the space bar. That key is not allowed.
 
Upvote 0
This code will do it with backspace. Run the sub SB, then every time you hit backspace, it will select the next sheet.

Code:
Sub SB()
Application.OnKey "{BACKSPACE}", "NEXTTAB"
End Sub

Sub NEXTTAB()
If ActiveSheet.Index < Sheets.Count Then
    Sheets(ActiveSheet.Index + 1).Select
End If
End Sub
 
Upvote 0
Create a button and assign this

Code:
Sub MoveNext()
On Error Resume Next
Sheets(ActiveSheet.Index + 1).Activate
If Err.Number <> 0 Then Sheets(1).Activate
End Sub
 
Upvote 0
This code will do it with backspace. Run the sub SB, then every time you hit backspace, it will select the next sheet.

Code:
Sub SB()
Application.OnKey "{BACKSPACE}", "NEXTTAB"
End Sub

Sub NEXTTAB()
If ActiveSheet.Index < Sheets.Count Then
    Sheets(ActiveSheet.Index + 1).Select
End If
End Sub


I had to remove End If for it to work :)

What other key is allowed ?
 
Upvote 0
This code will do it with backspace. Run the sub SB, then every time you hit backspace, it will select the next sheet.

Code:
Sub SB()
Application.OnKey "{BACKSPACE}", "NEXTTAB"
End Sub

Sub NEXTTAB()
If ActiveSheet.Index < Sheets.Count Then
    Sheets(ActiveSheet.Index + 1).Select
End If
End Sub


this is great Thankyou - what would be the alternative to go to the previous tab - again assigning another key for this action
 
Upvote 0
Why not just use the build in tabbing of; Ctrl-Page Up and Ctrl-Page Down ?
 
Upvote 0

Forum statistics

Threads
1,214,826
Messages
6,121,793
Members
449,048
Latest member
greyangel23

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