运行时错误' 2465' - 无法找到字段MS Access

时间:2015-07-15 20:03:43

标签: vba ms-access access-vba ms-access-2010

我在报表上有一个字段,该字段由单独表单上的组合框填充。我在执行代码时收到错误说明"无法找到字段' | 1'在你的表达式中提到 - 我在我的数据库中的不同模块中具有完全相同的代码,并且它没有错误地工作,因此我不确定我做错了什么。提前感谢您的任何帮助。

Private Sub Reportfilter_bt_Click()

    If IsNull(User_cb.Value) = True Then
        MsgBox "Please select a user from the dropdown menu", vbCritical, "Database Error"
    Else

        DoCmd.OpenReport "RWA Allocation by User", acViewReport

        [Report_RWA Allocation by User].Filterby_txt.Value = User_cb.Column(1)

        DoCmd.Close acForm, "RWA Task Report"

    End If

End Sub

1 个答案:

答案 0 :(得分:0)

事实证明,即使名称正确,访问也找不到我的报告。我必须在代码运行之前将其添加为Microsoft Access类对象,而不会出现任何错误。