Hi Guys,
I creating a new form to capture covid-19 patients in my local hospital.
It records one record per day of which patients occupy each bed each day along with the medical staff looking after them etc.
To save the medical staff time when adding new record I'm trying to copy over all data from the previous record when they are adding new record.
For example...
Previous record
bed1 - patient_name1 = a
bed2 - patient_name2 = b
bed3 - patient_name3 = c
The user then adds a new record and the patient_name1,patient_name2 and patient_name3 should copy to the new record for them ...
How can I get the values for patient_name to copy across to the latest record?
I have had some success with session variables/default value described herehowever this works but there are multiple users accessing from different computers so this way seems not to be practical for this case.
Any ideas the best way to get the copy value done?
On my add page I noticed a specific copy page onload event, is that worth me exploring that?
Thanks,
J