Page 2 of 2 FirstFirst 12
Results 16 to 17 of 17
  1. #16
    replicant00A52 is offline Novice
    Windows 7 64bit Access 2007
    Join Date
    Jun 2012
    Posts
    9
    departure dates are set in advance. a trip leaving in august may have a different price than a trip leaving in sept that was otherwise identical. There is no discount rate that can be applied across all tours. each tour will have differing pricing depending on if customers are traveling single, double, or triple. so for normalization i put the following fields into my original table:

    ProductTable
    - ProductID (primary key, auto number)
    - TourName (text)
    - Days (number)
    - DepartureDate (date/time)


    - SglPrice (currency)
    - DblPrice (currency)
    - TrplPrice (currency)

    the departure date and the price structure will more often than not be unique information, arbitrary values specific to the trip and nothing else.

  2. #17
    RayMilhon is offline VIP
    Windows XP Access 2010 32bit
    Join Date
    Aug 2011
    Location
    Southern California
    Posts
    1,085
    In that case you need to break up your product table into 2 tables.

    ProductTable
    ProductID (Primary key, autonumber)
    TourName (text)
    Days (Number)

    TourTable
    TourID (Primary key, autonumber)
    productid (number, foreign key)
    DepartureDate (Date)
    Price (Currency)

    Your salesTable would then be
    SalesID (Primarykey,autonumber)
    Productid (foreignkey, number)
    tourid (foreignkey, number)
    Qty (number)

    That may not be complete as I can't go back and look at my previous post but it's close

Page 2 of 2 FirstFirst 12
Please reply to this thread with any new information or opinions.

Similar Threads

  1. Replies: 5
    Last Post: 05-16-2012, 12:48 AM
  2. Replies: 1
    Last Post: 11-25-2011, 11:16 AM
  3. Replies: 20
    Last Post: 08-08-2011, 01:34 PM
  4. Replies: 3
    Last Post: 05-15-2011, 10:52 PM
  5. Migration from Access 2003 database to Access 2007 database.
    By cyclus2 in forum Import/Export Data
    Replies: 1
    Last Post: 09-10-2010, 11:43 AM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums