Recent content by skizzy

  1. S

    INSERT INTO multiple tables (one query)

    Perfect! Thanks!
  2. S

    INSERT INTO multiple tables (one query)

    Perfect! Thank you!
  3. S

    INSERT INTO multiple tables (one query)

    I don't need the first to run prior to the second. I just want them to run together. Let me show the whole code. Private Sub Submit_Click() Dim QueryToSubmitData As String Dim QueryToSubmitBlank As String If Me!WhatToDo = "Add Employee" Then If IsNull(Me.DeptCombo) Or...
  4. S

    INSERT INTO multiple tables (one query)

    Hi, I have two queries setup to insert data into two separate tables that I want to combine into one. I am not sure how to write it. Any help would be appreciated. QueryToSubmitData = "INSERT INTO Employee_List (ID, LName, FName, DeptId, Limit, Active) SELECT '" & Me!EmployeeID & "', '" &...
Back
Top Bottom