Thanks PH. Yes. Actually, that's what I'm trying to do but I can't figure out how to write the SQL. Here's what I have so far:
Private Sub cmdAppendNewTableName_Click()
Dim strTableName As String
Dim SQL1 As String
strTableName = Me.txtAddNewTable
SQL1 = "INSERT INTO [y_System/AppNameLookup]([System/AppName]) SELECT strTableName FROM ??? ;"
DoCmd.RunSQL SQL1
End Sub
Besides not knowing how to write the from clause, I also need to append the textbox data to 3 other tables besides the 1 in the Insert Into statement. I was thinking maybe a recordset of the table names would work but each table has a different name for the field that I want to append to.