I have a Form it is called frmSoldCase. On this form is a subform called frmRevisions.
I have a Date field that I need to put some code behind to check the date:
Dim dteDate As Date
'MsgBox "Received Date = " & [Received Date]
dteDate = [Forms]![frmRevisions].[Received Date]
dteDate = GetBusinessDate(dteDate, 0, icFuture)
dteDate = AdjustDate(dteDate, icFuture)
Me.Received_Date.Value = dteDate
Access keeps telling me that it can not find the form. I have tried to find an example of referring to a field on a Subform from a Form but have not found one or one that I can understand. Please can someone tell this dumb person how to reference a subform from a form.

I have a Date field that I need to put some code behind to check the date:
Dim dteDate As Date
'MsgBox "Received Date = " & [Received Date]
dteDate = [Forms]![frmRevisions].[Received Date]
dteDate = GetBusinessDate(dteDate, 0, icFuture)
dteDate = AdjustDate(dteDate, icFuture)
Me.Received_Date.Value = dteDate
Access keeps telling me that it can not find the form. I have tried to find an example of referring to a field on a Subform from a Form but have not found one or one that I can understand. Please can someone tell this dumb person how to reference a subform from a form.