userform loop for hiding and unhiding through multiple sequences
问题 So i have this string of code... It is in a userform and is all vba based (IE not pulling data from a spreadsheet.) Private Sub CHECK1_Click() If CHECK1.value = False Then COMBO1.visible = False Else COMBO1.visible = True End If End Sub It works for perfectly for exactly one checkbox and combobox pair, I need it to work on all 61 on of them, individually... Being new to this I looked at case select possability but it looks like i would have to spell in out. the userform is called "ORDER1" All