K
Kelly H
I am using Access 2000 and I have run into a few problems when I try to run a
report based off queries it asks me to enter the date range multiple times.
Only one of the queries actually has a date range and the other uses that as
a source.
Is there a way to only enter the date range once?
The main source is:
SELECT [tbl Progress].Installed, [tbl Progress].Comissioned, [tbl
Progress].[TRAINING COMPLETE], [tbl Progress].[INVOICE NUMBER], [tbl Site
Survey Information].[Scheduled Installation Date], [tbl Site Survey
Information].[Site Survey Date], [tbl Site Survey Information].[EMnet
Address]
FROM [tbl Progress] RIGHT JOIN [tbl Site Survey Information] ON [tbl
Progress].[EMNET ADDR] = [tbl Site Survey Information].[EMnet Address]
WHERE ((([tbl Site Survey Information].[Scheduled Installation Date])
Between [enter start date] And [enter last date]))
ORDER BY [tbl Site Survey Information].[Scheduled Installation Date], [tbl
Site Survey Information].[EMnet Address];
The secondary query is:
SELECT Count([qry progress reporting].[Scheduled Installation Date]) AS
[CountOfScheduled Installation Date], Count([qry progress
reporting].Installed) AS CountOfInstalled, Count([qry progress
reporting].Comissioned) AS CountOfComissioned, Count([qry progress
reporting].[TRAINING COMPLETE]) AS [CountOfTRAINING COMPLETE], Count([qry
progress reporting].[INVOICE NUMBER]) AS [CountOfINVOICE NUMBER],
Count([qry progress reporting].[EMnet Address]) AS [CountOfEMnet Address]
FROM [qry progress reporting];
- Any Help is appreciated!
Kelly
report based off queries it asks me to enter the date range multiple times.
Only one of the queries actually has a date range and the other uses that as
a source.
Is there a way to only enter the date range once?
The main source is:
SELECT [tbl Progress].Installed, [tbl Progress].Comissioned, [tbl
Progress].[TRAINING COMPLETE], [tbl Progress].[INVOICE NUMBER], [tbl Site
Survey Information].[Scheduled Installation Date], [tbl Site Survey
Information].[Site Survey Date], [tbl Site Survey Information].[EMnet
Address]
FROM [tbl Progress] RIGHT JOIN [tbl Site Survey Information] ON [tbl
Progress].[EMNET ADDR] = [tbl Site Survey Information].[EMnet Address]
WHERE ((([tbl Site Survey Information].[Scheduled Installation Date])
Between [enter start date] And [enter last date]))
ORDER BY [tbl Site Survey Information].[Scheduled Installation Date], [tbl
Site Survey Information].[EMnet Address];
The secondary query is:
SELECT Count([qry progress reporting].[Scheduled Installation Date]) AS
[CountOfScheduled Installation Date], Count([qry progress
reporting].Installed) AS CountOfInstalled, Count([qry progress
reporting].Comissioned) AS CountOfComissioned, Count([qry progress
reporting].[TRAINING COMPLETE]) AS [CountOfTRAINING COMPLETE], Count([qry
progress reporting].[INVOICE NUMBER]) AS [CountOfINVOICE NUMBER],
Count([qry progress reporting].[EMnet Address]) AS [CountOfEMnet Address]
FROM [qry progress reporting];
- Any Help is appreciated!
Kelly