Good morning,
I am a newbie with Access. I have what I believe is a simple question but seem to be able to find an answer. Either I am using the incorrect word patterns to find a solution or the answer is embedded in something else so i apologize if I have just missed it. A link to the answer would be perfectly acceptable.
I have combo box named PlanYear with years for choices (2019,2020,2021,2022). I have a text box named Filer. What I would like to happen is if 2020 is chosen in the PlanYear I would like the Filer box to show a name.
I have tried variations of the code below and although it runs without error it will not display the name. I have tried several variations of the code below but without success. Any help would be greatly appreciated.
Private Sub GroupName___ID_Exit(Cancel As Integer)
If Me.PlanYear = "2020" Then
Me.Filer = "Joe"
End If
End Sub
Thanks
I am a newbie with Access. I have what I believe is a simple question but seem to be able to find an answer. Either I am using the incorrect word patterns to find a solution or the answer is embedded in something else so i apologize if I have just missed it. A link to the answer would be perfectly acceptable.
I have combo box named PlanYear with years for choices (2019,2020,2021,2022). I have a text box named Filer. What I would like to happen is if 2020 is chosen in the PlanYear I would like the Filer box to show a name.
I have tried variations of the code below and although it runs without error it will not display the name. I have tried several variations of the code below but without success. Any help would be greatly appreciated.
Private Sub GroupName___ID_Exit(Cancel As Integer)
If Me.PlanYear = "2020" Then
Me.Filer = "Joe"
End If
End Sub
Thanks