E
EjFizzy
I am getting this error message on a form:
Run-time error '2465':
Microsoft Office Access can't find the field '|' referred to in your
expression.
I go to Debug and this is where the error is:
Private Sub Other__info_sessions__presentations__education_etc__AfterUpdate()
If [Other__info_sessions__presentations__education_etc].Value = True Then
[Walk_in_Assisted].Enabled = False
[Walk_in_Self_selected].Enabled = False
[Female].Enabled = False
[Sent_Resources].Enabled = False
[Indigenous].Enabled = False
[Male].Enabled = False
[CALD].Enabled = False
Else
[Walk_in_Assisted].Enabled = True
[Walk_in_Self_selected].Enabled = True
[Female].Enabled = True
[Sent_Resources].Enabled = True
[Indigenous].Enabled = True
[Male].Enabled = True
[CALD].Enabled = True
End If
End Sub
It can't identify the the line with this code
If [Other__info_sessions__presentations__education_etc].Value = True Then
Can someone please explain why, i copied and pasted the exact wording on the
private sub line and it still wont work
Run-time error '2465':
Microsoft Office Access can't find the field '|' referred to in your
expression.
I go to Debug and this is where the error is:
Private Sub Other__info_sessions__presentations__education_etc__AfterUpdate()
If [Other__info_sessions__presentations__education_etc].Value = True Then
[Walk_in_Assisted].Enabled = False
[Walk_in_Self_selected].Enabled = False
[Female].Enabled = False
[Sent_Resources].Enabled = False
[Indigenous].Enabled = False
[Male].Enabled = False
[CALD].Enabled = False
Else
[Walk_in_Assisted].Enabled = True
[Walk_in_Self_selected].Enabled = True
[Female].Enabled = True
[Sent_Resources].Enabled = True
[Indigenous].Enabled = True
[Male].Enabled = True
[CALD].Enabled = True
End If
End Sub
It can't identify the the line with this code
If [Other__info_sessions__presentations__education_etc].Value = True Then
Can someone please explain why, i copied and pasted the exact wording on the
private sub line and it still wont work