B
B K
I have a tabel tblYearPrice which contains Costprice per Year Per
Item:
YearPriceID = autokey
ItemID = numeric
Costprice = currency
Year = text
I wanna copy all the records of year =2001 to 2002 in the same table
so i can after that the costpice per item for 2002. I created a
append query which looks like this:
INSERT INTO tblYearPrice ( Item, Costprice, Year )
SELECT Item, Costprice, "2002" AS Expr1
FROM tblYearPrice
WHERE ((("2002")="2001"));
Why doesn't work this? I hate to build an maketable, update and
append query instead to fix this problem
Item:
YearPriceID = autokey
ItemID = numeric
Costprice = currency
Year = text
I wanna copy all the records of year =2001 to 2002 in the same table
so i can after that the costpice per item for 2002. I created a
append query which looks like this:
INSERT INTO tblYearPrice ( Item, Costprice, Year )
SELECT Item, Costprice, "2002" AS Expr1
FROM tblYearPrice
WHERE ((("2002")="2001"));
Why doesn't work this? I hate to build an maketable, update and
append query instead to fix this problem