Results 1 to 3 of 3

Thread: Query - Training Database

  1. #1
    Join Date
    Jan 2009
    Posts
    1

    Exclamation Query - Training Database

    Hi,

    I am developing a database and would like to apply filter to some reports that will restrict the records listed to within the last 30 days



    An example of a form being used is:

    Field: Date

    Table: TblCourses

    Sort: Descending





    Any help or assistance you could give would be greatly appreciated. If I've omitted any important details please don't hesitate to ask.



    Many thanks,



    A

  2. #2
    Join Date
    Oct 2006
    Location
    Maitland NSW Australia
    Posts
    275
    Andy

    Do not use Date as a field name as it is a reserved word. You could use course_date.

    I assume that Date is the date of the course. If so in your query for your reports in the criteria for the date enter >=date()-30. This will display records for courses during the last 30 days.
    Allan

  3. #3
    Join Date
    Jun 2004
    Location
    Atlanta and Manhattan
    Posts
    607

    And Consider Parameterizing the "Number of Days ..."

    If you parameterize the number of days (instead of hard coding "30 days") , so that the information consumer can supply that number in ad hoc fashion at runtime, you can do significantly "more with less." It might be a good idea to ask if any users would find this useful ...

    And, worst case, you get points for asking ...

    Good Luck,

    Bill

Posting Permissions

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