I am a novice Access user trying to manipulate a large database (approx. 20,000 rows of data) in order to analyze possible future employment gaps. Most of the data is duplicated, (such as name, id, position) with the exception of the persons work qualifications and the status of those qualifications i.e. qualified or trainee.
The employment qualifications are in one column and the status (trainee/qualifed) are in another column. The rest of the data is duplicated per employee.
Current example:
Access can tell me who holds certain qualifications, but then the personal data is duplicated, and with so much data being returned by the query, I currently have to analyze it by visually inspecting each line for the right combination of qualifications.
With the qualification data in one column, I can't seem to query it based on more than one qualification. (when I ask a qualification parameter question with "and", no results are returned).
Here is an example from my query that return no records (note that it is the actual table and field names, not the examples provided before). The Emplid is the employees id, and I'm looking for the qualifications of "divs" and "rxb2".
SELECT [Gallatin Org/Emplid/Quals Merge].Emplid, [Gallatin Org/Emplid/Quals Merge].Qualification, [Gallatin Org/Emplid/Quals Merge].Qualification, [Gallatin Org/Emplid/Quals Merge].Status
FROM [Gallatin Org/Emplid/Quals Merge]
WHERE ((([Gallatin Org/Emplid/Quals Merge].Qualification) ="divs") AND (([Gallatin Org/Emplid/Quals Merge].Qualification) ="rxb2"));
Is there an easy way to do that, or to transpose the qualification and qualification status into a single row (tied to the personal data) to analyze it?
Thank you for your time-
The employment qualifications are in one column and the status (trainee/qualifed) are in another column. The rest of the data is duplicated per employee.
Current example:
- Id Nme Age Pay Qual Qual.status
- 1 Bob 35 9 FBDC Q
- 1 Bob 35 9 GHTY T
- 1 Bob 35 9 ERMC Q
- 2 Jill 25 8 GJCV Q
- 2 Jill 25 8 TYUJ Q
- 2 Jill 25 8 WQDS T
Access can tell me who holds certain qualifications, but then the personal data is duplicated, and with so much data being returned by the query, I currently have to analyze it by visually inspecting each line for the right combination of qualifications.
With the qualification data in one column, I can't seem to query it based on more than one qualification. (when I ask a qualification parameter question with "and", no results are returned).
Here is an example from my query that return no records (note that it is the actual table and field names, not the examples provided before). The Emplid is the employees id, and I'm looking for the qualifications of "divs" and "rxb2".
SELECT [Gallatin Org/Emplid/Quals Merge].Emplid, [Gallatin Org/Emplid/Quals Merge].Qualification, [Gallatin Org/Emplid/Quals Merge].Qualification, [Gallatin Org/Emplid/Quals Merge].Status
FROM [Gallatin Org/Emplid/Quals Merge]
WHERE ((([Gallatin Org/Emplid/Quals Merge].Qualification) ="divs") AND (([Gallatin Org/Emplid/Quals Merge].Qualification) ="rxb2"));
Is there an easy way to do that, or to transpose the qualification and qualification status into a single row (tied to the personal data) to analyze it?
Thank you for your time-
Comment