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

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
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,064
Messages
6,122,936
Members
449,094
Latest member
teemeren

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