I have created a little training log for myself.
When I select an activity from a dropdown box I would like to immediately display a weekly total (time engaged) for that activity.
I already have the query but what I would like to know is:
is it possible to display the result of the query in my form. If yes, how do I do that?
SELECT [qryWeeklyTotals].[WeeklyTotals]
FROM qryWeeklyTotals
WHERE [qryWeeklyTotals].[activity]=[forms]![frmLog]!activity;
When I select an activity from a dropdown box I would like to immediately display a weekly total (time engaged) for that activity.
I already have the query but what I would like to know is:
is it possible to display the result of the query in my form. If yes, how do I do that?
SELECT [qryWeeklyTotals].[WeeklyTotals]
FROM qryWeeklyTotals
WHERE [qryWeeklyTotals].[activity]=[forms]![frmLog]!activity;