When I update a combo box to "Active," I want multiple fields to be enabled. I know the way to do it field by field. Example:
If Status = "Active" Then
Trial.Enabled = True
Else
Trial.Enabled=False
End If
Since there are several fields, is there a way to group those fields and name the GROUP of fields, so I don't have to do each one individually? I'm thinking something like this:
If Status = "Active" Then
Group1.Enabled = True
Else
Group1.Enabled=False
End If
If Status = "Active" Then
Trial.Enabled = True
Else
Trial.Enabled=False
End If
Since there are several fields, is there a way to group those fields and name the GROUP of fields, so I don't have to do each one individually? I'm thinking something like this:
If Status = "Active" Then
Group1.Enabled = True
Else
Group1.Enabled=False
End If