J
joseph
Good afternoon everyone,
I was hoping someone could provide me some assistance. I have the following
crosstab query:
TRANSFORM Count(tblDefendants.[Defendant ID Number]) AS
CountOfDependantIDNumber
SELECT tblDefendants.[Date Received by DOS], Count(tblDefendants.[Defendant
ID Number]) AS [Total Of Defendant ID Number]
FROM tblDefendants
GROUP BY tblDefendants.[Date Received by DOS]
ORDER BY tblDefendants.[Date Received by DOS] DESC
PIVOT tblDefendants.[Defendant ID Number];
Which provides me with a total number of waivers received by date. Which is
great, however, once this database is completely constructed there will be
10k records over 10+ years which would involve alot of scrolling to narrow
down specific dates to be reviewed. I would like to be able to prompt the
user for a date range that will produce results in the exact format as listed
above. If i attempt to use the Where statement in the query I get the message
that reads "The Microsoft Office Access database engine does not recognize
'[Enter Beginning Date Range]' as a valid field name or expression ...
I tried to run a crosstab query that was based on a date range query and got
the same message when I tried to run it ...
I'm looking for results that appear as follows: User clicks action button to
search waivers received by date range, enters date range of 1/15/1999 through
1/16/1999
Date Received Waivers Received
1/15/1999 15
1/16/1999 12
Total Received
for Date Range Selected 27
The best i've come up w/ so far is getting a report in that format for my
entire database, can't get it to allow me to only report a user-defined date
range.
Any help would be most appreciated
I love this place ... I found some similar scenarios in previous posts but
the extent of those has got me this far
thank you again
I was hoping someone could provide me some assistance. I have the following
crosstab query:
TRANSFORM Count(tblDefendants.[Defendant ID Number]) AS
CountOfDependantIDNumber
SELECT tblDefendants.[Date Received by DOS], Count(tblDefendants.[Defendant
ID Number]) AS [Total Of Defendant ID Number]
FROM tblDefendants
GROUP BY tblDefendants.[Date Received by DOS]
ORDER BY tblDefendants.[Date Received by DOS] DESC
PIVOT tblDefendants.[Defendant ID Number];
Which provides me with a total number of waivers received by date. Which is
great, however, once this database is completely constructed there will be
10k records over 10+ years which would involve alot of scrolling to narrow
down specific dates to be reviewed. I would like to be able to prompt the
user for a date range that will produce results in the exact format as listed
above. If i attempt to use the Where statement in the query I get the message
that reads "The Microsoft Office Access database engine does not recognize
'[Enter Beginning Date Range]' as a valid field name or expression ...
I tried to run a crosstab query that was based on a date range query and got
the same message when I tried to run it ...
I'm looking for results that appear as follows: User clicks action button to
search waivers received by date range, enters date range of 1/15/1999 through
1/16/1999
Date Received Waivers Received
1/15/1999 15
1/16/1999 12
Total Received
for Date Range Selected 27
The best i've come up w/ so far is getting a report in that format for my
entire database, can't get it to allow me to only report a user-defined date
range.
Any help would be most appreciated
I love this place ... I found some similar scenarios in previous posts but
the extent of those has got me this far
thank you again