G
Guest
I have a form which, based on the date in the Called_On field on the form
needs to:
1) search tblDailyComments for the date and bring back the DailyComments
data in tblDailyComments.
2) DailyComments needs to be opened for editing.
The application of this field is if something unusual happens while the
person is on the phone through-out the day, this field can act as a simple
log of events for that day.
The two problems I am having is I can not pull up the data from
tblDailyComments and display them in the foorm frmCalling field
txtDailyComments, and I suspect I will not be able to edit DailyComments via
frmCalling 's txtDailyCOmments field. Here is what I have:
Me.txtDailyComments = DLookup("[DailyComments]", "tblDailyComments", "[Date]
= " & Me.CALLED_ON)
DailyComments: the comments field in tblDailyComments
Date: the primary Key containing the date; field in tblDailyComments
Called_ON: When the call was made. From form tblCandidates.
Thanks.
needs to:
1) search tblDailyComments for the date and bring back the DailyComments
data in tblDailyComments.
2) DailyComments needs to be opened for editing.
The application of this field is if something unusual happens while the
person is on the phone through-out the day, this field can act as a simple
log of events for that day.
The two problems I am having is I can not pull up the data from
tblDailyComments and display them in the foorm frmCalling field
txtDailyComments, and I suspect I will not be able to edit DailyComments via
frmCalling 's txtDailyCOmments field. Here is what I have:
Me.txtDailyComments = DLookup("[DailyComments]", "tblDailyComments", "[Date]
= " & Me.CALLED_ON)
DailyComments: the comments field in tblDailyComments
Date: the primary Key containing the date; field in tblDailyComments
Called_ON: When the call was made. From form tblCandidates.
Thanks.