I am creating a database and have a combobox dropdown with two choices: "Open" or "Closed". When "closed" is chosen, I would like the "Reason for Closure" field to appear.
This is what I have so far:
This is making both the "true" and "false" statements blank.
Advice? This is really annoying!
This is what I have so far:
Code:
Private Sub Project_Status_AfterUpdate() If Me.Project_Status = "Closed" Then Me.Reason_for_Closure.Visible = True Else: Me.Reason_for_Closure.Visible = False End If End Sub
Advice? This is really annoying!
Comment