ActiveX ComboBox default value select

otrava18

Board Regular
Joined
Feb 11, 2018
Messages
61
Hello,

I have a ComboBox in ActiveX and i want to select a value with VBA, that is inside the list of CB. I`m noob and and i can`t find a solution, I have used


VBA Code:
Sub Gata_Functii()
Worksheets("TEMPERATURA").ComboBox("INCALZIRE").Value = "SISTEM INTEGRAT VRV"
'OR'
Worksheets("TEMPERATURA").ComboBox("INCALZIRE").ListIndex = -1
End Sub

It doesn`t work for me. My CB is named "INCALZIRE" and i have 3 values inside (SISTEM INTEGRAT VRV is one of these three,this is the value that i want to set when i click to a shape)
It doesn`t work for me. My CB is named "INCALZIRE" and i have 3 values inside (SISTEM INTEGRAT VRV is one of these three,this is the value that i want to set when i click to a shape)

Can you give me an advise?

Thank you !
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
Try one of these:
VBA Code:
    Worksheets("TEMPERATURA").OLEObjects("INCALZIRE").Object.Value = "SISTEM INTEGRAT VRV"
    'OR
    Worksheets("TEMPERATURA").OLEObjects("INCALZIRE").Object.ListIndex = 0  '0 = first item in list
 
Upvote 0
Solution

Forum statistics

Threads
1,215,577
Messages
6,125,640
Members
449,242
Latest member
Mari_mariou

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