hello and good day,
I have a report set up using date range perameters i can grab a quarter of data or a month or a day or a whole year worth of data. on this report i also want to display in a text box the following...
this will show the actual net weight of pvc resin we're extruding - YAY RESIN! - and here is my SQL query that has the parameters and what not.
in access can you have more than one table selected in a query? also have this lookup chart working for our products that i want to use to auto fill descriptions and dimensions but that i already have working just not too sure how to add it all into the same report or if i can even still researching that one a bit.
here is the sql
I have a report set up using date range perameters i can grab a quarter of data or a month or a day or a whole year worth of data. on this report i also want to display in a text box the following...
Code:
=([Main]![RD / QA Samples]+[Main]![Total Scrap]+[Main]![On Hold Lbs]+[Main]![Net Lbs])
in access can you have more than one table selected in a query? also have this lookup chart working for our products that i want to use to auto fill descriptions and dimensions but that i already have working just not too sure how to add it all into the same report or if i can even still researching that one a bit.
here is the sql
Code:
PARAMETERS [First Date] DateTime, [Second Date] DateTime;
SELECT Main.[Mth/day], Main.[DS/NS], Main.Shift, Main.[Product Code], Main.[Product Description], Main.[Mat'l], Main.[Run Hrs], Main.Pcs, Main.Quantity, Main.[Total Run], Main.[RD / QA Samples], Main.[Total Scrap], Main.[On Hold Lbs], Main.[Net Lbs]
FROM Main
WHERE (((Main.[Mth/day]) Between [First Date] And [Second Date]));
Last edited: