Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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:...
    4. 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...
    5. Grouping Query Results
      "John Smith" <3rtwemte001@sneakemail.com> wrote in message news:1p5khvc1kd5qatngsm6mfvvcq0ehn763va@4ax.com... Well im not sure what you want. ...
  3. #2

    Default Re: Grouping DB Results

    Sarah wrote:
    > 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
    Is Crystal Reports an option? if so, it's the option you should use. If not,
    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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139