Link to home
Start Free TrialLog in
Avatar of Tom Crowfoot
Tom CrowfootFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Error inserting data from record into another Table

Hi

I have a piece of code which I thought would add a new record to another table. The database has 2 main tables (People, which is where the data comes from) and PeopleOnAssignments which is where I want the data added to - this table has 4 fields in it:

ID (Autonunber)
PersonID (Number)
AssignmentID (Number)
Status (Text, but its not used in this part )

Dim PeopleID1 As String
Dim AssignmentID1 As String
PeopleID1 = Me.ID
AssignmentID1 = Me.AssLookupCombo.Value

Dim strSQL As String
strSQL = "INSERT INTO PeopleOnAssignments ([PersonID],[AssignmentID]) Values(PeopleID1 , AssignmentID1)"
CurrentDb.Execute strSQL, dbFailOnError

Open in new window


The error I keep getting is 3061 - Too few parameters. Expected 2

Can anyone help
ASKER CERTIFIED SOLUTION
Avatar of Gustav Brock
Gustav Brock
Flag of Denmark image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Tom Crowfoot

ASKER

Brilliant - works a treat -  thank you very much
You are welcome!

/gustav