B
blandis
We are getting the above error with the following message:
Microsoft Office Access can't find the field "|" referred to in your
expression.
code:
Private Sub EditAppt_Click()
'Opens the edit add/edit client appointment time and date
If IsNull([subfrm:1040 Appointments].Form![Curr Tax Yr]) Then
DoCmd.OpenForm "frm:_bfl_ AddEdit Appts", , , , acFormAdd
Else
DoCmd.OpenForm "frm:_bfl_AddEdit Appts", , , "[CltID] = " & [ID] & "
AND [TaxYear] = " & [subfrm: 1040 Appointments].Form![Curr Tax Yr]
End If
End Sub
Microsoft Office Access can't find the field "|" referred to in your
expression.
code:
Private Sub EditAppt_Click()
'Opens the edit add/edit client appointment time and date
If IsNull([subfrm:1040 Appointments].Form![Curr Tax Yr]) Then
DoCmd.OpenForm "frm:_bfl_ AddEdit Appts", , , , acFormAdd
Else
DoCmd.OpenForm "frm:_bfl_AddEdit Appts", , , "[CltID] = " & [ID] & "
AND [TaxYear] = " & [subfrm: 1040 Appointments].Form![Curr Tax Yr]
End If
End Sub