Sure,
Master Table contains records on incidents that have happened, each incident has one record
Child Table contains records that contain activity relating to the incidents, each incident will have from 0 to an unlimited number of activity records in this table
Relationship is, of course 1 to many from master to child
Join is left outer since activity records may or may not be present
In the master table, I need to select records based one specific activity which has occured, by date, typically the prior day
However, I only want incident records where a certain activity has NEVER occured which means that I have to go back and check ALL of the child records even the ones that occured before the date range for the container report. I am doing this in a sub-report and have it calculating if the record is present just fine, I just need to pass that answer from the sub-report back to the container report and then use it to eliminate those records that should not be there.
I know that this may be somewhat confusing, and I appreciate your help, please ask if you have questions.