Hi,
Really confused with this one and wondered if anyone could see where i'm going wrong.
I have two tables tblHistory and tblTemp both table have the column "07/04/2012" set as number type
All I am trying to do is append the data from tblTemp into tblHistory using the following command
INSERT INTO tblHistory ([07/04/2012])
SELECT [07/04/2012] FROM tblTemp;
But I keep getting "Error 3001 - Invalid Arguement" has anyone got any ideas? All of the fields in each table have the same data types if this helps
Cheers
Chris
Really confused with this one and wondered if anyone could see where i'm going wrong.
I have two tables tblHistory and tblTemp both table have the column "07/04/2012" set as number type
All I am trying to do is append the data from tblTemp into tblHistory using the following command
INSERT INTO tblHistory ([07/04/2012])
SELECT [07/04/2012] FROM tblTemp;
But I keep getting "Error 3001 - Invalid Arguement" has anyone got any ideas? All of the fields in each table have the same data types if this helps
Cheers
Chris