Stormrider83
Computer Science Student
- Local time
- Today, 19:52
- Joined
- Jul 16, 2008
- Messages
- 26
Sorry if this has been asked before I searched these forums and found nothing so hopefully I am not wasting anyones time!
I am using Access 2007 and my problem is that I am trying to insert data into a table from both another table and a form using VBA. The Table in question is a link or reference table and I want to create a reference for every record in another table and link it to a record you create yourself via a form.
The code is below and while it complies and executes it does nothing. I think its because I enforce referential integrity in the reference table so two SQL statements wont work, however I cant for the life of me work out how to combine them into one single statement.
Can anyone help?
I am using Access 2007 and my problem is that I am trying to insert data into a table from both another table and a form using VBA. The Table in question is a link or reference table and I want to create a reference for every record in another table and link it to a record you create yourself via a form.
The code is below and while it complies and executes it does nothing. I think its because I enforce referential integrity in the reference table so two SQL statements wont work, however I cant for the life of me work out how to combine them into one single statement.
Code:
strSQL = " INSERT INTO Production_Run_Greenhouses (Greenhouse) " _
& "SELECT (Greenhouse_ID) " _
& "FROM [Greenhouses];"
CurrentDb.Execute strSQL
strSQL = " INSERT INTO Production_Run_Greenhouses (Production_Run,Qty) VALUES ('" & Me.Text11 & "'," & 0 & ")"
CurrentDb.Execute strSQL
Can anyone help?