G
Guest
I have the following code:
INSERT INTO [Table1] ([First Name], MI, [Last Name])
SELECT [Table1].[First Name], [Table1].MI, [Table1].[Last Name]
FROM [Table1]
WHERE [Table1].[ID] = [Forms]![Master_frm]![ID]
I keep getting the run time error 3061, stating "Too few parameters.
Expected 1." Does anyone have any insight or explanation?
INSERT INTO [Table1] ([First Name], MI, [Last Name])
SELECT [Table1].[First Name], [Table1].MI, [Table1].[Last Name]
FROM [Table1]
WHERE [Table1].[ID] = [Forms]![Master_frm]![ID]
I keep getting the run time error 3061, stating "Too few parameters.
Expected 1." Does anyone have any insight or explanation?