On a form that tracks reviews of several stations on a subform, the below query returns the results of the review; whether it is complete or not. On the Form there is a field holding the number of stations to be reviewed. I'm creating a form that will show (among other things) if the review is complete. The rules for completion are this:
A station is complete if has a "yes" in the complete field AND a "die" in the die field. The number of complete stations must match the number of stations indicated on the main form.
The query returns the following:
JobNum------StationNum------Complete-------DieOrIdle
for example: if a Job has 5 stations to be reviewed, and the query returns these results:
JobNum------StationNum--------Complete-------DieOrIdle
2666---------------1---------------- yes--------------die
2666-------------- 2 --------------- yes ------------ idle
2666 ------------- 3 ---------------- yes ---------- die
2666 ------------- 4 ---------------- yes ----------- die
2666 ------------- 5----------------- no ------------- die
... the review would not be complete, since only 3 stationsout of the nessissary 5 were completed.
I want to use the results of this test to toggle the visibility of Label on the summary form.
Thanks for any suggestions,
Keith
A station is complete if has a "yes" in the complete field AND a "die" in the die field. The number of complete stations must match the number of stations indicated on the main form.
The query returns the following:
JobNum------StationNum------Complete-------DieOrIdle
for example: if a Job has 5 stations to be reviewed, and the query returns these results:
JobNum------StationNum--------Complete-------DieOrIdle
2666---------------1---------------- yes--------------die
2666-------------- 2 --------------- yes ------------ idle
2666 ------------- 3 ---------------- yes ---------- die
2666 ------------- 4 ---------------- yes ----------- die
2666 ------------- 5----------------- no ------------- die
... the review would not be complete, since only 3 stationsout of the nessissary 5 were completed.
I want to use the results of this test to toggle the visibility of Label on the summary form.
Thanks for any suggestions,
Keith