Hi All,
I have an employee table (tblEmployees1) which has all employee information including their grades (sGrade).
I want their grades to be converted from Manager, Senior Manager, Director etc. into M, SM, D etc in a new table.
I made a table (example of it shown below) (tblGradeFilter) in order to convert these grades into codes.
ID - sGradeRaw -sGrade
1 - Manager - M
2 - Senior Manager - SM
3 - Director - D
4 -Trainee - Other
I have also used a make-table query to form a relationship between the sGrade in the tblEmployees1 and the sGradeRaw in the above table.
The newly formed table from the query, tblEmployees has all fields from tblEmployees1 except the sGrade from tblGradeFilter
This works fine! But i need it to have some kind of rule which means anything input which is not in the sGradeRaw entries should appear by default as "Other"
Please assist. I think this could be done by the criteria in the make-table query but not sure how.
I have an employee table (tblEmployees1) which has all employee information including their grades (sGrade).
I want their grades to be converted from Manager, Senior Manager, Director etc. into M, SM, D etc in a new table.
I made a table (example of it shown below) (tblGradeFilter) in order to convert these grades into codes.
ID - sGradeRaw -sGrade
1 - Manager - M
2 - Senior Manager - SM
3 - Director - D
4 -Trainee - Other
I have also used a make-table query to form a relationship between the sGrade in the tblEmployees1 and the sGradeRaw in the above table.
The newly formed table from the query, tblEmployees has all fields from tblEmployees1 except the sGrade from tblGradeFilter
This works fine! But i need it to have some kind of rule which means anything input which is not in the sGradeRaw entries should appear by default as "Other"
Please assist. I think this could be done by the criteria in the make-table query but not sure how.