Hello, I have a macro that dumps employee names into a temp table, then dumps them into the main Employee table. Yes, I could probably dump them straight into the main table. The temp table is used in another query as well.
My goal is to fix the names in the query by using the "CorrectName" module where the names are ProperCased before dumping them into the main table.
My question is how to put that in the query and where.
If I did a test query to see if the module fixes the name I have this:
CorrectName-Test: CorrectName([LastName]) and same for the first name.
I would also like to take the names in the employee table and fix them all to proper case. Right now, some are all CAPS, all lowercase and mixed.
How do I go about doing that without removing the PrimaryID keys and getting the names jumbled with the PID Key?
Any help would be appreciated.
My goal is to fix the names in the query by using the "CorrectName" module where the names are ProperCased before dumping them into the main table.
My question is how to put that in the query and where.
If I did a test query to see if the module fixes the name I have this:
CorrectName-Test: CorrectName([LastName]) and same for the first name.
I would also like to take the names in the employee table and fix them all to proper case. Right now, some are all CAPS, all lowercase and mixed.
How do I go about doing that without removing the PrimaryID keys and getting the names jumbled with the PID Key?
Any help would be appreciated.