Saving information when a form is filled out twice

1
Is there a way to keep a log of all the information that is filled out in the forms by a user? Especially when a form is filled out for a second time, the information from the first time is lost, right? I have added some Log Messages, but then I can only log string parameters. Thank you in advance.
asked
2 answers
0

You could create a new object each time the form is going to be filled in. Just check if the user has a previous object with data and copy it over before showing the form.

answered
0

You would have to resolve that in your app design/domain model.

Keep a history of objects if you want to see previous versions.

Alternatively, if only changes to some fields are relevant you could make an associated list of objects for those fields.

And if you just want to log and nothing else, write a Save microflow that does the logging.

answered