How to capture ALL field changes in a Form app

Hi - I have a HUGE form.
Some of the form field variables come from the table supporting the form and others are field variables added to the form (which in an edit mode get their data from other tables).

My client wants to know what fields have been updated when editing. I know Log will do this for the fields that come from the table that supports the form but NOT the added fields.

Since the form has a 100+ fields in it, is there an easy way I can identify ONLY the fields that were modified ( I don’t want to do a sc_changed() for a 100+ fields):
a) What the value was for each field that was changed.
b) What the new value is for each field changed.

1 Like

With a bit of javascript/jquery you can

1 save the values of the fields into an array after the form is loaded to know what the values were.

2 save the values of the fields into an array just before submitting the form to know the new values

3 compare the two arrays to get fields changed

You don’t need to do it on each field one by one. Use jquery selector.