How to assign invisible default value to combobox until user clicks?

DarkJester89

Board Regular
Joined
Nov 5, 2017
Messages
109
Office Version
  1. 2016
Platform
  1. Windows
1604030467634.png

I have four combo boxes, which the fourth is based on options selected in the first 3.

A bug was identified that doesn't show the full named range, unless certain options in the first 3 are picked. I checked the coding several times, rechecked the formula name ranges, and everything looks fine.

Is there a way to set a default value to these, that can make the default value invisible until user selects to remove this error bug.

Thank you in advance.
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Instead of us providing a workaround to a bug problem.
Why not show us your script and explain in detail what your wanting your script to do.
Provide sheet names and named Range names.
And all specific details
 
Upvote 0
A bug was identified that doesn't show the full named range, unless certain options in the first 3 are picked. I checked the coding several times, rechecked the formula name ranges, and everything looks fine.
I also prefer approach suggested @My Aswer Is This
There are several ways to populate a combobox
 
Upvote 0
To load all the values in a named Range into a Combobox I would use something like this:
"One" being the name of the named range
VBA Code:
Private Sub CommandButton1_Click()
'Modified  10/30/2020  11:59:21 AM  EDT
With ComboBox1
    .Clear
    .List = Range("One").Value
End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,996
Messages
6,122,636
Members
449,092
Latest member
bsb1122

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