Hi all,
Just wanted to clarify the VBA code required to enable a text box if another combobox contains the word "Other"?
The name of my combobox is "Cardiac" and the name of the textbox i wish to Enable is "Other". The code i'm using at the moment is as follows but doesen't seem to work
Any help much appreciatedCode:Private Sub Cardiac_AfterUpdate()If Me.Cardiac.Text = "other" Then Me.Other.Enabled = False Else Me.Other.Enabled = True End If End Sub