S
skiing
Good morning
I have a query which prompts for Beginning Date and Ending Date on an
existing field. I would like to have the Beginning Date and Ending
Date print on a Report. Can I retain the value entered for Beginning
Date and Ending Date in a field to be used in the report? I am
unfamiliar with SQL but feel I would need to use the SQL of the query
to accomplish this task - if so, would still be unsure as to how to
retrieve the fields for the report. Below is the SQL for my query:
SELECT [T-Package Table].[Package Type], Count([T-Drawing Table].[Drwg
No]) AS [CountOfDrwg No], Count([T-Package Table].[Package Number]) AS
[CountOfPackage Number], [T-Drawing Table].[Date Issued]
FROM [T-Package Table] INNER JOIN [T-Drawing Table] ON [T-Package
Table].[Package Number] = [T-Drawing Table].PackageNo
GROUP BY [T-Package Table].[Package Type], [T-Drawing Table].[Date
Issued]
HAVING ((([T-Drawing Table].[Date Issued]) Between [Enter Beginning
Issue Date] And [enter ending issue date]));
thank you for any assistance anyone can offer !
I have a query which prompts for Beginning Date and Ending Date on an
existing field. I would like to have the Beginning Date and Ending
Date print on a Report. Can I retain the value entered for Beginning
Date and Ending Date in a field to be used in the report? I am
unfamiliar with SQL but feel I would need to use the SQL of the query
to accomplish this task - if so, would still be unsure as to how to
retrieve the fields for the report. Below is the SQL for my query:
SELECT [T-Package Table].[Package Type], Count([T-Drawing Table].[Drwg
No]) AS [CountOfDrwg No], Count([T-Package Table].[Package Number]) AS
[CountOfPackage Number], [T-Drawing Table].[Date Issued]
FROM [T-Package Table] INNER JOIN [T-Drawing Table] ON [T-Package
Table].[Package Number] = [T-Drawing Table].PackageNo
GROUP BY [T-Package Table].[Package Type], [T-Drawing Table].[Date
Issued]
HAVING ((([T-Drawing Table].[Date Issued]) Between [Enter Beginning
Issue Date] And [enter ending issue date]));
thank you for any assistance anyone can offer !