Results 1 to 5 of 5
  1. #1
    Ganny is offline Novice
    Windows 7 64bit Access 2007
    Join Date
    Jul 2013
    Posts
    3

    Is Access right for me?


    Hi- new to Access and wondering if it will work for my project. I have been using an Excel spreadsheet and adding columns but it has become unwieldy. Have a spreadsheet with Government FAR clauses and related columns (approx 800 records, 17 fields). When I receive a new contract I add a column named with the contract number, and then add some marker in the cells below for the FAR clauses from the existing list that are on the new contract. Incoming customer contracts will invoke some but not all of the clauses, but can be as many as 100 (tried to filter Access table but it gave up at 80).

    When a contract comes in I want to select the matching clauses from the table and have an unchangeable output of some kind tied to the new contract. I would need to be able to link the individual output results to get a report showing for instance all contracts that call out a particular clause. I get around 100 contracts a year. My question is what is the best way to retrieve and save the selections? Can I do it with a form (like drag & drop) and report for each contract, as long as I don't refresh the report? Or should I create a new (sub?)table for each contract? Or go back to Excel?

    Thanks very much for your help.

  2. #2
    June7's Avatar
    June7 is offline VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,772
    I have seen database used to produce 'boilerplate' documents. Your structure of a column for each contract is not appropriate.

    No, 'drag and drop' is not an Access technique for data entry or record selection.

    You need a better understanding of relational database and data normalization concepts and also Access functionality. Suggest you invest in a basic tutorial.
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  3. #3
    Ganny is offline Novice
    Windows 7 64bit Access 2007
    Join Date
    Jul 2013
    Posts
    3
    Thanks for the response. The reason I say "drag and drop" is because I downloaded some sample forms and drag and drop was among them. I know that putting contract numbers as column headings is not a good idea; that's why I'm asking for help. Thanks again

  4. #4
    June7's Avatar
    June7 is offline VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,772
    I have never seen 'drag and drop' for data entry or else I have misinterpreted the reference.

    I expect a database could be designed to accomplish what you want. I am not finding any examples. The only design I can imagine is:

    tblClauses
    ClauseID
    Clause

    tblCustomers
    CustomerID

    tblContracts
    ContractID
    CustomerID

    tblContractClauses
    ContractID
    ClauseID
    OrderSeqNum

    The clauses would print out in report as records in the order defined by OrderSeqNum. This sequence could be preset in tblClauses or defined by user in tblContractClauses.

    Does this look practical for your situation?
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  5. #5
    Ganny is offline Novice
    Windows 7 64bit Access 2007
    Join Date
    Jul 2013
    Posts
    3
    Hey! thanks June 7! I think that will work. I don't see where you are supposed to mark "solved" but I think you have done it. Thanks again

Please reply to this thread with any new information or opinions.

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