R
Roger Ball
my database tracks attendance at events with different number of
iterations. Event A may have only one iteration where Event B has 3.
tbl_Students
- StudentID
- L_Name
etc
tbl_Events
- EventID
- Event
- Iterations
If Event A has 1 iteration and Event B has 3 iterations I would like a
query to show:
A1 B1 B2 B3
Joe 1 1 0 1
Jill 0 1 1 1
where Joe attended (1) all events except B2 (0)
A pivot table where I could expand each event would be a super bonus.
Thanks for the help!
iterations. Event A may have only one iteration where Event B has 3.
tbl_Students
- StudentID
- L_Name
etc
tbl_Events
- EventID
- Event
- Iterations
If Event A has 1 iteration and Event B has 3 iterations I would like a
query to show:
A1 B1 B2 B3
Joe 1 1 0 1
Jill 0 1 1 1
where Joe attended (1) all events except B2 (0)
A pivot table where I could expand each event would be a super bonus.
Thanks for the help!