A
AJ
I have a simple table which I use to record my daily activities, which need
to be reported to management - by department and source. The columns are:
Name
Activity1
Activity2
Activity3
....
Department
Source
Then, for each person I work with that day, I simply double click in that
row's (record's) field (column) that pertains to that activity, and then use
a combo box for the Department and Source. I have about 8 activities, so it
is fabulously quick to report. I have made a vba script to insert the
current date on double-click. (so its all dates). (Then if I work with a
person over a couple of weeks, I can just go back and see how fast progress
is, etc.
Now, trying to report on this, I am trying to make up some script that says
"count the number of instances of "today's date" in this column" and it has
eluded me how to do that.
I have tried: using an unbound text box with the control source:
=count(Activity1) where activity1 = date and it won't accept that...
do I have to write a query for each activiy?
The full goal is to have a daily, and a weekly report (using a date range).
Any suggestions?
- AJ
to be reported to management - by department and source. The columns are:
Name
Activity1
Activity2
Activity3
....
Department
Source
Then, for each person I work with that day, I simply double click in that
row's (record's) field (column) that pertains to that activity, and then use
a combo box for the Department and Source. I have about 8 activities, so it
is fabulously quick to report. I have made a vba script to insert the
current date on double-click. (so its all dates). (Then if I work with a
person over a couple of weeks, I can just go back and see how fast progress
is, etc.
Now, trying to report on this, I am trying to make up some script that says
"count the number of instances of "today's date" in this column" and it has
eluded me how to do that.
I have tried: using an unbound text box with the control source:
=count(Activity1) where activity1 = date and it won't accept that...
do I have to write a query for each activiy?
The full goal is to have a daily, and a weekly report (using a date range).
Any suggestions?
- AJ