MS Access Subform with fields with #Error in form view

前端 未结 2 1131
南方客
南方客 2021-01-27 14:24

MS Access 2003.

I have a query behind a subform that has a sql statement like this:

SELECT ClientTotalInvoiceLineItems.*
     , CDate(GetWeekEnding([Week         


        
2条回答
  •  粉色の甜心
    2021-01-27 14:46

    I know one possible error is that you haven't correctly nested the forms;

    The main "container" form that it's on needs to be included in the statement like

    [forms]![frmClientTotalInvoices]![frmClientTotalInvoicesSub].[Form].[NewRecord]
    

    I'm assuming that frmClientTotalInvoices is the largest container of the form.

提交回复
热议问题