Ask a Question related to ASP Database, Design and Development.
-
Sarah #1
Grouping DB Results
Hi,
I'm using ASP with an Access database to track the user's usage of a
Data Entry program. Each time the user inputs data, a record is made
in the database that includes a time and date stamp. That way I can
track how many records were made per hour, per day, etc.
My problem is in building the report page to display this
information... I'm pretty new at all of this, and I can think of a
few ways of doing it, but they all seem to require writing a lot of
code... so I'm thinking there must be an easier way to display it...
What I need is a reports page that will breakdown the data into the
day and time that entries were made... So the end result would look
something like this:
3/07/04
1:00 - 2:00
entry
entry
entry
Total Entries: 3
--------------------------
3/07/04
2:00 - 3:00
entry
entry
entry
entry
Total Entries: 4
--------------------------
Grand total: 7
Any ideas how I can best go about this?
Thanks!
-Sarah
Sarah Guest
-
Query results - grouping
I am sure there is an easy answer to this, but I am stumped! I have a query pulling in these fields: Area, Heading, Year, IndustryGroup (Year and... -
Grouping results in CFMAIL
Hi there, I am using MX7 and trying to send a mail that contains the content of a grouped query, grouping the results by date like this: Date1... -
Grouping results with ASP from Access DB
I found this topic doing a search and it answered my question exactly. The code seems to do what I was looking for but there's one strange issue:... -
Query results don't display properly in results table.IGNORE PREVIOUS
:disgust; I need to display the results of a query. The query runs properly. My problem is having specific results display in specific locations in... -
Grouping Query Results
"John Smith" <3rtwemte001@sneakemail.com> wrote in message news:1p5khvc1kd5qatngsm6mfvvcq0ehn763va@4ax.com... Well im not sure what you want. ... -
Bob Barrows #2
Re: Grouping DB Results
Sarah wrote:
Is Crystal Reports an option? if so, it's the option you should use. If not,> Hi,
>
> I'm using ASP with an Access database to track the user's usage of a
> Data Entry program. Each time the user inputs data, a record is made
> in the database that includes a time and date stamp. That way I can
> track how many records were made per hour, per day, etc.
>
> My problem is in building the report page to display this
> information... I'm pretty new at all of this, and I can think of a
> few ways of doing it, but they all seem to require writing a lot of
> code... so I'm thinking there must be an easier way to display it...
>
> What I need is a reports page that will breakdown the data into the
> day and time that entries were made... So the end result would look
> something like this:
>
> 3/07/04
>
> 1:00 - 2:00
> entry
> entry
> entry
>
> Total Entries: 3
> --------------------------
> 3/07/04
> 2:00 - 3:00
> entry
> entry
> entry
> entry
> Total Entries: 4
> --------------------------
>
> Grand total: 7
>
> Any ideas how I can best go about this?
>
> Thanks!
>
> -Sarah
then you will need to
order your records by the time and date they were entered and use looping
code to display them in the correct groups. Without details about your table
name, field names and datatypes, I can't get more specific than this.
Bob Barrows
--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Bob Barrows Guest



Reply With Quote

