Leopard011
New member
- Local time
- Yesterday, 18:11
- Joined
- Jan 14, 2012
- Messages
- 9
Dear All,
I've a problem with my Append Query, each time I run it, it keeps duplicating entries, the confirmation message tells me that I'm going to add 1 row, this is OK
the second time to run >> 2 rows
3rd one >> 4 rows , 16 , 32 and so on
and each time i run it it keeps doubles the count of rows to be appended
now its telling me that i'm adding 599 rows
do you believe it ??
the SQL code for the append query is this:
INSERT INTO Materials_in_Details ( M_In_No, M_Code, M_Name, M_In_Q )
SELECT [Forms]![Materials_In_Main]![M_In_No] AS Expr1, [Forms]![Materials_In_Main]![Q_M_Code] AS Expr2, [Forms]![Materials_In_Main]![M_In_N] AS Expr3, [Forms]![Materials_In_Main]![M_In_Q] AS Expr4
FROM Materials_in_Details;
I've a problem with my Append Query, each time I run it, it keeps duplicating entries, the confirmation message tells me that I'm going to add 1 row, this is OK
the second time to run >> 2 rows
3rd one >> 4 rows , 16 , 32 and so on
and each time i run it it keeps doubles the count of rows to be appended
now its telling me that i'm adding 599 rows

the SQL code for the append query is this:
INSERT INTO Materials_in_Details ( M_In_No, M_Code, M_Name, M_In_Q )
SELECT [Forms]![Materials_In_Main]![M_In_No] AS Expr1, [Forms]![Materials_In_Main]![Q_M_Code] AS Expr2, [Forms]![Materials_In_Main]![M_In_N] AS Expr3, [Forms]![Materials_In_Main]![M_In_Q] AS Expr4
FROM Materials_in_Details;