I hope that somone can give me some help.
CR 10 with SQL2000
I have got 2 tables, one containing demographic data (demo_table) and the other containing appointment data (appt_table). The appointment table records if the person attended or did not attend (DNA).
demo_table
Id# Name
1 Bob
2 Jim
3 Sue
4 Tom
appt_table
id# date attended
1 3/3 True
1 4/3 False
2 4/3 false
2 6/3 false
1 4/5 false
3 7/7 true
I have created a report based on information contained in the demo_table. What I would like to do is remove everyone who has attended and leave those who have DNA'ed or have not had an appointment.
Using the abve example the list should only have Jim and Tom as Jim DNA'ed twice and Tom because he has not had an appointment.
Thanks for any help.
Vis
CR 10 with SQL2000
I have got 2 tables, one containing demographic data (demo_table) and the other containing appointment data (appt_table). The appointment table records if the person attended or did not attend (DNA).
demo_table
Id# Name
1 Bob
2 Jim
3 Sue
4 Tom
appt_table
id# date attended
1 3/3 True
1 4/3 False
2 4/3 false
2 6/3 false
1 4/5 false
3 7/7 true
I have created a report based on information contained in the demo_table. What I would like to do is remove everyone who has attended and leave those who have DNA'ed or have not had an appointment.
Using the abve example the list should only have Jim and Tom as Jim DNA'ed twice and Tom because he has not had an appointment.
Thanks for any help.
Vis