Re: $$Excel-Macros$$ Using Userform as Navigation Pane to move between worksheets

2013-10-03 Thread ashish koul
to avoid typing in combobox On Thu, Oct 3, 2013 at 12:27 AM, Bipin Singh wrote: > Hello Ashish, > > May I ask you the use of ComboBox1_KeyDown and ComboBox1_KeyPress event in > provided solution if *Userform.show* is already inside worksheet change > event.. > > Thanks in advance. > > Thanks, >

Re: $$Excel-Macros$$ Using Userform as Navigation Pane to move between worksheets

2013-10-02 Thread Bipin Singh
Hello Ashish, May I ask you the use of ComboBox1_KeyDown and ComboBox1_KeyPress event in provided solution if *Userform.show* is already inside worksheet change event.. Thanks in advance. Thanks, Regards, BS On Wed, Oct 2, 2013 at 12:41 PM, ashish koul wrote: > try attached file > > > > On

Re: $$Excel-Macros$$ Using Userform as Navigation Pane to move between worksheets

2013-10-02 Thread Jewel Sharma
Brilliant mate. Works very well. On Wednesday, October 2, 2013 3:11:27 PM UTC+8, ashish wrote: > > try attached file > > > On Wed, Oct 2, 2013 at 12:01 PM, Jewel Sharma > > wrote: > >> Hi Ashish, >> This is great, but doesn't meet my need. Allow me to explain: >> >> The workbook will have certain

Re: $$Excel-Macros$$ Using Userform as Navigation Pane to move between worksheets

2013-10-02 Thread ashish koul
try attached file On Wed, Oct 2, 2013 at 12:01 PM, Jewel Sharma wrote: > Hi Ashish, > This is great, but doesn't meet my need. Allow me to explain: > > The workbook will have certain "hidden" sheets that the user does not need > to interact with. That is why I'm hiding the *.* So, I need a > "N

Re: $$Excel-Macros$$ Using Userform as Navigation Pane to move between worksheets

2013-10-01 Thread Jewel Sharma
Hi Ashish, This is great, but doesn't meet my need. Allow me to explain: The workbook will have certain "hidden" sheets that the user does not need to interact with. That is why I'm hiding the *.* So, I need a "Navigation Pane" that would allow the user to move only to the 8 worksheets where th

Re: $$Excel-Macros$$ Using Userform as Navigation Pane to move between worksheets

2013-10-01 Thread ashish koul
Also if u want to add worksheet navigation button on right click try this *Add below code to workbook open module* Private Sub Workbook_Open() On Error Resume Next 'Delete the new button if already exists ' name of the new button is "New Button" Application.CommandBars("Cell").Co

Re: $$Excel-Macros$$ Using Userform as Navigation Pane to move between worksheets

2013-10-01 Thread ashish koul
try this Sub test() Application.CommandBars("Workbook tabs").ShowPopup End Sub On Wed, Oct 2, 2013 at 11:26 AM, Jewel Sharma wrote: > Hi, > I have a workbook with 8 worksheets; wherein I anticipate the user would > move to and fro between them in the course of using the workbook. To > simplif

$$Excel-Macros$$ Using Userform as Navigation Pane to move between worksheets

2013-10-01 Thread Jewel Sharma
Hi, I have a workbook with 8 worksheets; wherein I anticipate the user would move to and fro between them in the course of using the workbook. To simplify navigation, I intend to do the following: 1. Create a Userform that has labels for all worksheets. 2. Such userform should be always vi