INSERT INTO please help

ThaiByThai

Registered User.
Local time
Yesterday, 21:11
Joined
Aug 12, 2009
Messages
21
Hello -

I'm tying to INSERT information from HRM table into HRM_final table and i am getting an error asking me to enter a Parameter value. I'm still very new at this access stuff - any help/suggestion?


DoCmd.RunSQL "INSERT INTO HRM_final SELECT HRM.SSBN, HRM.title, HRM[ORG code] FROM HRM';"


thank you!
 
Try

Code:
DoCmd.RunSQL "INSERT INTO HRM_final SELECT [SSBN], [title], [ORG code] FROM HRM;"

The syntax was wrong
 

Users who are viewing this thread

Back
Top Bottom