Save existing form data as new record

stucky

Registered User.
Local time
Today, 08:03
Joined
Sep 19, 2013
Messages
16
Hi All,
Before I over think this one too much. I want to open an existing record via a form and then edit that data but save the form as a new record. Basically a form used for handover/takeover process where most of the data remains the same but the new form is the basis for the next handover/takeover.
Suggestions appreciated.
 
If you want to edit the data before copying it you would have to use an unbound form.
However if you find the record first then copy it as a new record then edit, you could use a bound form.

The unbound form is the safer way as the changes will only be committed if they press the copy & new button.
 
I agree with this. one occasion when an unbound form is easier to use.

either that, or store the current record in a temporary table, and then append the temporary data to the real table. that way you get the benefit of a bound form too.

just easier than writing to the active table, and then having to remove a cancelled item
 
If you want to edit the data before copying it you would have to use an unbound form.
However if you find the record first then copy it as a new record then edit, you could use a bound form.

The unbound form is the safer way as the changes will only be committed if they press the copy & new button.


Thank you Minty, points me in the right direction.
 
I agree with this. one occasion when an unbound form is easier to use.

either that, or store the current record in a temporary table, and then append the temporary data to the real table. that way you get the benefit of a bound form too.

just easier than writing to the active table, and then having to remove a cancelled item

Thank you Gemma, I will be able to start off in the right direction.
 

Users who are viewing this thread

Back
Top Bottom