krutoigoga
Registered User.
- Local time
- Today, 00:14
- Joined
- May 13, 2010
- Messages
- 34
Form "IAR_Entry" with multiple fields is being used to enter data into "IAR" Table.
I am trying to a way to enter a field value (ID) on a form and base the report on the specific field value in the form, i.e. only show the records for that ID.
I am able to do the above in the form using a combo box. However the report does not have an "afterupdate" event to use
to no avail.
Can anyone suggest a way to enter a field value on a form and base the report on the lookup value in the form?
Thank you in advance.
I am trying to a way to enter a field value (ID) on a form and base the report on the specific field value in the form, i.e. only show the records for that ID.
I am able to do the above in the form using a combo box. However the report does not have an "afterupdate" event to use
Code:
], , First, ="[IARnum] = " & Str(Nz(Screen.ActiveControl,0))[/CODE.
I have tried a Dlookup however that returns the first entry in the query.
Also tried creating another form and tried dlookup [CODE]=DLookUp("[IARnum]","IARQa" & [Forms]![IAR_REPORT]![text0])
Can anyone suggest a way to enter a field value on a form and base the report on the lookup value in the form?
Thank you in advance.