Our case managers need to see clients once each caledar month.
Any time within a calendar month.
How can I report if a task has been each calendar month?
Thanks
Kelvin
Each calendar month over... what span? How are your Tasks stored, and how are
task accomplishments stored?
Basically you can run a Query grouping by Year([datefield]) and
Month([datefield]), along with whatever other fields are needed (ClentID?). It
will show the count (or whatever you choose) of tasks during that month.
It might be handy to have an auxiliary table with one two fields - TheYear and
TheMonth (don't use Year or Month as fieldnames) - with one record for each
month that you want to consider; use an "Unmatched Query Wizard" to find
records where there is NOT a match in this table for a client.
John W. Vinson [MVP]