Hi Everyone!
I have a workbook consisting of about 40 tabs, and each tab has about 40 ActiveX ComboBoxes. Half of the comboxboxes are populated by linking to a range, and the other half is populated using VBA (since they are conditional on the selections in the first half of comboboxes). Unfortunately, I have been having a lot of issues that are driving me nuts
MAIN ISSUE
Every once in a while, I notice that Excel is renaming all of my comboxes, and this causes my VBA code to fail (since it refers to the ComboBoxes by their name). The names change from cbDept18, cbDept19, etc. to Combo1, Combo2, etc. When this happens, I have to revert to an older version of my file and recreate all of the changes that I made since the prior version. Redoing work is never fun Is there something that I'm doing wrong, or does anyone know if there is a known bug that causes this issue?
BACKGROUND INFO:
Thanks in advance for any help!
I have a workbook consisting of about 40 tabs, and each tab has about 40 ActiveX ComboBoxes. Half of the comboxboxes are populated by linking to a range, and the other half is populated using VBA (since they are conditional on the selections in the first half of comboboxes). Unfortunately, I have been having a lot of issues that are driving me nuts
MAIN ISSUE
Every once in a while, I notice that Excel is renaming all of my comboxes, and this causes my VBA code to fail (since it refers to the ComboBoxes by their name). The names change from cbDept18, cbDept19, etc. to Combo1, Combo2, etc. When this happens, I have to revert to an older version of my file and recreate all of the changes that I made since the prior version. Redoing work is never fun Is there something that I'm doing wrong, or does anyone know if there is a known bug that causes this issue?
BACKGROUND INFO:
- I work on the same file on my work computer and my home computer, both running Excel 2010
- I'm not sure when the ComboBoxes are renaming . . . I don't notice the error until I try to click a VBA-populated ComboBox and find that it is empty
- the file is saved as XLSB
- Other problems that I have encountered include:
- ComboBoxes sometimes become completely disabled unless I delete the "MSForms.exd" temporary file (which is apparently a fix for a known MS bug)
- ComboBoxes completely resize and reposition themselves, which I think happens after I print and then save
- Based on another MrExcel thread, I have changed the "Placement" attribute to 1 (i.e. Move and size with cells) for all comboboxes, so I'll see if that helps
- The XLSB file takes a long time to open
- It usually says "Not responding" as it calculates for a minute, then pops to life
- Maybe due to the (40 tabs) x (40 ComboBoxes) = 1600 ActiveX ComboBoxes in the workbook?
Thanks in advance for any help!