Let me start of with what we did. We made a form with 2 primary keys:
1. Ticket Number
2. Version Number
When the user clicks the duplicate record button on the form, the Ticket Number stays the same but the Version Number" primary key increments by 1 (which is what we want). The Version Number is currently AUTONUMBER. At this point everything seems good however their are a few problems
1. After the user clicks the duplicate button and clicks anywhere on the screen, it automatically jumps back to the previous records. Example... user is on record 10 ,clicks duplicate record and it creates record 11, once the user clicks in any field it moves back to record 10 instead of 11
2. On our form, we also have a subform. The subform has the master/child links to the primary keys of the main tables. Whenever the user clicks duplicate record, the subform of the new record does not populate with the information of the previous record. We figured that it is not populating because the version number is incrementing. And because of this, the subform is blank. However, we want to know if there is a way for the new record created to have the same information populated in the subform as the previous version one so that they may edit it.
Any help would be appreciated. Thanks
1. Ticket Number
2. Version Number
When the user clicks the duplicate record button on the form, the Ticket Number stays the same but the Version Number" primary key increments by 1 (which is what we want). The Version Number is currently AUTONUMBER. At this point everything seems good however their are a few problems
1. After the user clicks the duplicate button and clicks anywhere on the screen, it automatically jumps back to the previous records. Example... user is on record 10 ,clicks duplicate record and it creates record 11, once the user clicks in any field it moves back to record 10 instead of 11
2. On our form, we also have a subform. The subform has the master/child links to the primary keys of the main tables. Whenever the user clicks duplicate record, the subform of the new record does not populate with the information of the previous record. We figured that it is not populating because the version number is incrementing. And because of this, the subform is blank. However, we want to know if there is a way for the new record created to have the same information populated in the subform as the previous version one so that they may edit it.
Any help would be appreciated. Thanks