Results 1 to 4 of 4
  1. #1
    Leerobo is offline Novice
    Windows 8 Access 2013 64bit
    Join Date
    Apr 2016
    Posts
    5

    Transfer Data Between Forms

    Hi

    I've created a prospecting database (Access 2013) and i need to pass data from one form to another. An example would be a customer that is no longer live so i would want to move this data to another from using a button and then delete the data from the existing form once transferred.



    I'm fairly new to Access, so i hope my question makes sense.

    Any help would be appreciated.

  2. #2
    orange's Avatar
    orange is offline Moderator
    Windows 8 Access 2010 32bit
    Join Date
    Sep 2009
    Location
    Ottawa, Ontario, Canada; West Palm Beach FL
    Posts
    16,870
    Not sure I understand what you are trying to do, but my suspicion is that you are trying to use forms where you should be using a table.

    Consider, you have a table of Customers; and 1 of those Customers dies; if you want to retain an/all historic data, keep the record in the table. If you add a field to your table eg: IsActiveYN with default value empty or Y, then for the dead Customer set the field to N. Then, when you do a report, form or query, you must consider the value of IsActiveYN.
    If N, then ignore that record. If you only want a report for "dead" Customers, then SELECT all records From YourTable where IsActiveYN = N.

    Good luck. If I have mis-guessed, then please give more info in plain English with any details.

  3. #3
    Leerobo is offline Novice
    Windows 8 Access 2013 64bit
    Join Date
    Apr 2016
    Posts
    5
    Hi

    Thanks for your response. Having read my original post again it doesn't explain clearly what i'm trying to achieve.

    Lets say the form with all the prospect data is named "Prospects" which is derived from "Prospects Table". I have another form named "Removed Prospects" which is related to "Removed Prospects Table". What i want to try and achieve is, for whatever reason, remove a prospect from "Prospects Form" and the associated table by using a button which then opens form "Removed Prospects" and in this form i am able to enter the reason for moving the prospect, this will then populate the "Removed Prospects Table".

    Hope I've made myself clearer.

    Thanks

  4. #4
    orange's Avatar
    orange is offline Moderator
    Windows 8 Access 2010 32bit
    Join Date
    Sep 2009
    Location
    Ottawa, Ontario, Canada; West Palm Beach FL
    Posts
    16,870
    the form with all the prospect data is named "Prospects" which is derived from "Prospects Table".
    I still think you are confusing the use of forms with tables.

    Prospects

    Select * from tblProspect where IsActiveYN = Y

    RemovedProspects

    Select * from tblProspect where IsActiveYN = N

    You do not need 2 tables. Use the above queries as recordsource for the respective Forms.

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

Similar Threads

  1. Data Transfer
    By Aimee in forum Access
    Replies: 3
    Last Post: 06-27-2013, 07:17 AM
  2. Transfer Data from Old DB to New
    By 1eye1vision in forum Import/Export Data
    Replies: 7
    Last Post: 08-06-2011, 02:12 PM
  3. Tablet to USB data transfer
    By GraemeG in forum Access
    Replies: 0
    Last Post: 03-24-2011, 07:47 AM
  4. Data Transfer
    By access_man in forum Access
    Replies: 0
    Last Post: 10-27-2010, 04:47 PM
  5. Transfer data to excel
    By John Southern in forum Import/Export Data
    Replies: 5
    Last Post: 06-11-2010, 09:26 AM

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