I have some knowledge on VB, just need help solving a routine, I cannot get the desired results in Access query:
Scenario: I have two tables in Access that I joined, Left outer join to select all names and then my sub table all of the evaluations (1 per quarter). I need an access rpt to state if individual A has had an evaluation this quarter.
Query (sample)
Lastname Evaldate
Smith 1-Feb-08
Smith 1-Apr-08
Doe 8-Apr-08
Frank 11-Dec-07
Frank 20-Jan-08
Johnson
Here is my output
- Do they have an eval this quarter, this quarter starts 1-apr-08
Lastname Evaluation Status
Smith Completed
Doe Completed
Frank Due
Johnson Due
Before I get started, I was thinking of doing this with IF, THEN, ELSE
What do you think?
Peter
Scenario: I have two tables in Access that I joined, Left outer join to select all names and then my sub table all of the evaluations (1 per quarter). I need an access rpt to state if individual A has had an evaluation this quarter.
Query (sample)
Lastname Evaldate
Smith 1-Feb-08
Smith 1-Apr-08
Doe 8-Apr-08
Frank 11-Dec-07
Frank 20-Jan-08
Johnson
Here is my output
- Do they have an eval this quarter, this quarter starts 1-apr-08
Lastname Evaluation Status
Smith Completed
Doe Completed
Frank Due
Johnson Due
Before I get started, I was thinking of doing this with IF, THEN, ELSE
What do you think?
Peter