A
Arska
Hi
1.
I would like to keep a navigation bar, visible on all worksheets, a bit
like frames on a web page. Is there anyway of doing this in excel?
2.
Another issue. I have a macro (code below) which creates a dropdown list
of worksheets, by clicking I can access directly that sheet, however if
I want this on every sheet, I must make a new macro for each combobox.
Is there anyway I can using the same combobox for all sheets?
Private Sub cboTheList_Click()
Worksheets(cboTheList.Text).Activate
End Sub
Private Sub Worksheet_Activate()
Dim ws As Worksheet
cboTheList.Clear
For Each ws In Worksheets
cboTheList.AddItem ws.Name
Next ws
End Sub
Cheers
Arska
1.
I would like to keep a navigation bar, visible on all worksheets, a bit
like frames on a web page. Is there anyway of doing this in excel?
2.
Another issue. I have a macro (code below) which creates a dropdown list
of worksheets, by clicking I can access directly that sheet, however if
I want this on every sheet, I must make a new macro for each combobox.
Is there anyway I can using the same combobox for all sheets?
Private Sub cboTheList_Click()
Worksheets(cboTheList.Text).Activate
End Sub
Private Sub Worksheet_Activate()
Dim ws As Worksheet
cboTheList.Clear
For Each ws In Worksheets
cboTheList.AddItem ws.Name
Next ws
End Sub
Cheers
Arska