How to check if combobox.value is empty when looping in userform controls?

Sabotage

Board Regular
Joined
Sep 19, 2013
Messages
58
Hey Wizzards,

I want to loop through of all controls in a user form and count comboboxes based on two criteria. Criteria 1 is to check if the combobox.name contains "cb_Discription*" and up until this point I am able to count them correctly. Criteria 2 would be to check if the combobox is empty or not? So if I find the first combobox named like that and is the combobox is not empty count add 1 to counter. I've tried the following but no luck:

VBA Code:
            Dim CTRL As Control
            Dim COUNTER As Interger

            For Each CTRL In Me.Controls
                If CTRL.Name Like "cb_Discription*" And IsNull(CTRL.Value) = False Then    ' also tried CTRL.Text<>"" 
                    COUNTER = COUNTER + 1
                End If
            Next

I realize that when I declare CTRL as control, the Control object does not have a property .value or .text.
Any thoughts? Thanks in advance...
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Hi,

Type should be Integer, maybe try:

VBA Code:
  Dim objControl    As Control
  Dim intCounter    As Integer
  
  For Each objControl In Me.Controls
    If TypeOf objControl Is MSForms.ComboBox Then
      If objControl.Name Like "cb_Discription*" Then
        If objControl.Value <> 0 And objControl.ListIndex > -1 Then intCounter = intCounter + 1
      End If
    End If
  Next objControl
  If intCounter > 0 Then MsgBox "Found: " & intCounter

Ciao,
Holger
 
Upvote 0
Hey guys, never mind I have found the solution myself, just wrapped it into another if statement checking for the combo box TypeName first. Also changed the second criteria a bit then carry on with the rest. I still don't know why it is so important to determine if the type name is combo box. I someone happen to have an explanation please tell. Much appreciated.

VBA Code:
            Dim CTRL As Control
            Dim COUNTER As Interger

            For Each CTRL In Me.Controls
                If TypeName(CTRL) = "ComboBox" Then
                    If CTRL.Name Like "cb_Discription*" And CTRL.Value <> "" Then
                        COUNTER = COUNTER + 1
                    End If
                End If
            Next
 
Upvote 0
Hi,

Type should be Integer, maybe try:

VBA Code:
  Dim objControl    As Control
  Dim intCounter    As Integer
 
  For Each objControl In Me.Controls
    If TypeOf objControl Is MSForms.ComboBox Then
      If objControl.Name Like "cb_Discription*" Then
        If objControl.Value <> 0 And objControl.ListIndex > -1 Then intCounter = intCounter + 1
      End If
    End If
  Next objControl
  If intCounter > 0 Then MsgBox "Found: " & intCounter

Ciao,
Holger
Thank you Holger,
Just saw your answer after I've figured it out. I can see that you also wrapped it into another if statement where your find the TypeName. Without determining that first the code breaks. Although the second if statement clearly says that if the Name is Like....

Hmmmm still not getting the logic, but it does work so thanks again....
 
Upvote 0
Hi Sabotage,

TypeName of COUNTER should be Integer, not Interger. My Excel comes up with an error and will not allow any code to execute from there.

VBA Code:
  Dim objControl    As Control
  Dim intCounter    As Integer    '!!!not Interger
  
  For Each objControl In Me.Controls
    'check for ComboBoxes only
    If TypeOf objControl Is MSForms.ComboBox Then
      'check the name of the ComboBox
      If objControl.Name Like "cb_Discription*" Then
        'check if any value in the CB is selected
        If objControl.ListIndex > -1 Then intCounter = intCounter + 1
      End If
    End If
  Next objControl
  If intCounter > 0 Then MsgBox "Found: " & intCounter

Any of the checks of the third If will deliver an addition to the counter in my previous code so just checked here if anything has been chosen in the ComboBox.

Ciao,
Holger
 
Upvote 0

Forum statistics

Threads
1,214,786
Messages
6,121,548
Members
449,038
Latest member
Guest1337

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