S
SCC
I have two tables. The Contact table contains has a single record for each
employee: first name, last name, phone, etc. The SemesterWorked table has
multiple entries for each employee since it lists the semester and year work:
ID Semester Year
smith fall 2009
smith spring 2009
young spring 2009
young fall 2008
I want to create reports for current employees and former employees. I've
been able to create a query for current employees with semester="fall" and
year="2009. I can't extract the records for former employees. A query with
semester<>"fall" and year<>"2009" returns no data. When I used a calculated
field of
Currently_Employed: IIf([tblSemesterWorked]![Semester]="Fall" And
[tblSemesterWorked]![Year_Worked]="2009","Yes","No")
I have multiple results, one for each record in the SemesterWorked table.
I would think this would be a simple query but I am having problems. I have
little experience with Access so I am looking for something simple.
Thanks.
employee: first name, last name, phone, etc. The SemesterWorked table has
multiple entries for each employee since it lists the semester and year work:
ID Semester Year
smith fall 2009
smith spring 2009
young spring 2009
young fall 2008
I want to create reports for current employees and former employees. I've
been able to create a query for current employees with semester="fall" and
year="2009. I can't extract the records for former employees. A query with
semester<>"fall" and year<>"2009" returns no data. When I used a calculated
field of
Currently_Employed: IIf([tblSemesterWorked]![Semester]="Fall" And
[tblSemesterWorked]![Year_Worked]="2009","Yes","No")
I have multiple results, one for each record in the SemesterWorked table.
I would think this would be a simple query but I am having problems. I have
little experience with Access so I am looking for something simple.
Thanks.