ActiveX Control Combo box

NYJets44

New Member
Joined
Jan 10, 2022
Messages
3
Office Version
  1. 365
Platform
  1. Windows
  2. Mobile
  3. Web
Hi All,

I've created a combo box using activex controls and after making a selection from a drop down list, it does not allow additional buttons to work until I click into an outside cell.

Does anybody have a workaround for this? Any help would be much appreciated.
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
Please try this. Make sure to set the LinkedCell to a cell address in the Properties of the ActiveX Combobox

VBA Code:
Private Sub ComboBox1_Change()
  Range(ComboBox1.LinkedCell).Select
End Sub
 
Upvote 0
Hi Jeffrey,

Thanks for your reply. I tried out that piece of code but it kept giving me an error. In fact, I've updated the activex combobox to a form control combobox and the issue was not there.

Is there any workaround for the activex control combobox? It looks better from a design perspective
 
Upvote 0
So that was a generic macro. Did you name you Combobox? You will need to change Combox1 to Whatever you named yours. Right click on the Combobox and choose View Code
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,958
Members
449,096
Latest member
Anshu121

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