Is it possible to reduce this process to one query?
*Oh and clients without services in my example is clients without services for 90 days.*
Right now in access:
Select d.doctor_id, , DateDiff("d", [last_date_of_service], date()) AS days INTO Table 1
from doctor as d
Where DateDiff("d", [last_date_of_service], date()) >= 90
Then I inner join Table 1 with doctor on doctor_id, so I get all the doctors patients and not just the ones with no services for 90 days.
Or what would be the process for doing this in a subreport? I have just begun using CR, so I am only slightly familiar with subreports.