C
Chase
Below is the SQL of a query where the field "Period1" needs to be the
contents of a text box on a form. How do I do this?
INSERT INTO tblTemp ( Period, Product, SubProduct1, SubProduct2,
[MR/NMR/OM], Channel, OutputDescription, [New/Existing], COMMONELEMENT,
[Value] )
SELECT tblCalendar.Period, tblTempInputData.Product,
tblTempInputData.SubProduct1, tblTempInputData.SubProduct2,
tblTempInputData.[MR/NMR/OM], tblTempInputData.Channel,
tblTempInputData.OutputDescription, tblTempInputData.[New/Existing],
tblTempInputData.COMMONELEMENT, tblTempInputData.[Period1] AS [Value]
FROM tblTempInputData, tblCalendar INNER JOIN tblTempfrmIn ON
tblCalendar.FldMth = tblTempfrmIn.FldMth
WHERE (((tblTempInputData.[Period1])<>0));
Regards
Chase
contents of a text box on a form. How do I do this?
INSERT INTO tblTemp ( Period, Product, SubProduct1, SubProduct2,
[MR/NMR/OM], Channel, OutputDescription, [New/Existing], COMMONELEMENT,
[Value] )
SELECT tblCalendar.Period, tblTempInputData.Product,
tblTempInputData.SubProduct1, tblTempInputData.SubProduct2,
tblTempInputData.[MR/NMR/OM], tblTempInputData.Channel,
tblTempInputData.OutputDescription, tblTempInputData.[New/Existing],
tblTempInputData.COMMONELEMENT, tblTempInputData.[Period1] AS [Value]
FROM tblTempInputData, tblCalendar INNER JOIN tblTempfrmIn ON
tblCalendar.FldMth = tblTempfrmIn.FldMth
WHERE (((tblTempInputData.[Period1])<>0));
Regards
Chase