Remembering the last used dropdown menu in a custom ribbon when a file is closed

Bassie

Board Regular
Joined
Jan 13, 2022
Messages
66
Office Version
  1. 2019
Platform
  1. Windows
Hi,

I recently started a project in which I am creating a custom excel ribbon for myself. One of my tools has to do with a dropdown button within the ribbon. The dropdown is working fine but I would love excel to remember the ID the dropdown was on when excel is closed and put it on the same ID when I open excel again. I know this is possible as I have seen it before but can figure out for the life of me how.

Thanks in advanced,
Bassie
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
When a selection is made from your dropdown, store its index in a location, such as a worksheet cell, defined name, or registry setting. Then, when the workbook is opened, retrieve it from that location.

So, for example, let's say that we want to store the index in Sheet1!A1, and that the id for your dropdown is DropDown1. First, add the getSelectedItemIndex callback to your XML code. This will trigger its VBA callback after you open your workbook and click on the relevant tab. Then, if you haven't already done so, add the onChange callback, which will trigger its VBA callback and store the index for the selected item. So your XML code might look something like this...

XML:
                    <dropDown
                        id="Dropdown1"
                        label="LabelName"
                        getItemCount="Dropdown1_getItemCount"
                        getItemID="Dropdown1_getItemID"
                        getItemLabel="Dropdown1_getItemLabel"
                        getSelectedItemIndex="Dropdown1_getSelectedItemIndex"
                        onAction="Dropdown1_OnChange"/>

Then, the VBA callbacks would be...

VBA Code:
Public Sub Dropdown1_getSelectedItemIndex(control As IRibbonControl, ByRef returnedVal)

    Dim selectedItemIndex As Long
    selectedItemIndex = ThisWorkbook.Worksheets("Sheet1").Range("A1").Value
    
    returnedVal = selectedItemIndex
    
End Sub

Public Sub Dropdown1_OnChange(control As IRibbonControl, id As String, index As Integer)
    
    ThisWorkbook.Worksheets("Sheet1").Range("A1").Value = index
    
    'etc
    '
    '
    
End Sub

Hope this helps!
 
Upvote 1
Solution
When a selection is made from your dropdown, store its index in a location, such as a worksheet cell, defined name, or registry setting. Then, when the workbook is opened, retrieve it from that location.

So, for example, let's say that we want to store the index in Sheet1!A1, and that the id for your dropdown is DropDown1. First, add the getSelectedItemIndex callback to your XML code. This will trigger its VBA callback after you open your workbook and click on the relevant tab. Then, if you haven't already done so, add the onChange callback, which will trigger its VBA callback and store the index for the selected item. So your XML code might look something like this...

XML:
                    <dropDown
                        id="Dropdown1"
                        label="LabelName"
                        getItemCount="Dropdown1_getItemCount"
                        getItemID="Dropdown1_getItemID"
                        getItemLabel="Dropdown1_getItemLabel"
                        getSelectedItemIndex="Dropdown1_getSelectedItemIndex"
                        onAction="Dropdown1_OnChange"/>

Then, the VBA callbacks would be...

VBA Code:
Public Sub Dropdown1_getSelectedItemIndex(control As IRibbonControl, ByRef returnedVal)

    Dim selectedItemIndex As Long
    selectedItemIndex = ThisWorkbook.Worksheets("Sheet1").Range("A1").Value
   
    returnedVal = selectedItemIndex
   
End Sub

Public Sub Dropdown1_OnChange(control As IRibbonControl, id As String, index As Integer)
   
    ThisWorkbook.Worksheets("Sheet1").Range("A1").Value = index
   
    'etc
    '
    '
   
End Sub

Hope this helps!
Hi,

Thanks a lot for your clear explenation you mentioned we can store the last selected dropdown ID in a worksheet cell, defined name, or registry setting. What do you think is the best option if this add-in is going to be shared to multiple people and used on all excel workbooks?

Thanks again!
 
Upvote 0
I would simply store it in a worksheet cell within your add-in.

Cheers!
 
Upvote 1

Forum statistics

Threads
1,214,622
Messages
6,120,576
Members
448,972
Latest member
Shantanu2024

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