I've got a control name written to an array as a string. Example:
Of course this is a combo box in cell d44.![]()
mArr(25, 7)="ComboBoxD44"
What I'm trying to do is to reference this control and make changes (enable other controls, etc) based on its value if set to Yes, but if No or blank, disable controls and skip over processing any of the controls in the group.
How can I reference this as a control and not a string, so I can test its value such as :
![]()
if ComboBoxD44.Text="Yes" then...
Bookmarks