reset form to initial values, to replace db values

Hello!

I have a form with different fields (text, multiselect, select…)
All fields have an initial value, which is also displayed with a new form.

But now I want to reset some values in this form when it is opened again with only one reset button, which sets the said back to the stored initial value.

Thanks

Hi i did something likewise

in my case:
if a user leaves a field blank after update the field gets a standard value. So if a user forgets a value or leave it blank this kicks in

OnBeforeUpdate

if (!{fieldname})
{
{fieldname} = “INSERT HERE SOME VALUE”;

you can multiply this for every field.

if you use a button, you can use this code on the button. but i recommend to do the same when a user updates the record.

hi!
In my case, the users can configure the informations, they want to receive, by using different select and text fields. If they did a miss configuration, they should be able to press reset button and the fields get back to initial value, so that thy can start “new” configuration.
I?ll try your idea.