@cmvarga5
Hello!
This is likely happening because the Clear Form / Reset a form action is clearing the footer text field along with the checkboxes. Update the Clear Form button so it resets only the checkbox/input fields, then forces Acrobat to recalculate the footer field.
Suggestion:
Go to All tools > Prepare a form, double-click the Clear Form button, and use the Actions tab. If you’re using Reset a form, select only the fields you want reset. If the footer is a calculated text field, add/run JavaScript like this after the reset, replacing the field names with your actual checkbox field names:
this.resetForm(["CompanyA", "CompanyB"]); // checkbox/input field names only
this.calculate = true;
this.calculateNow();
Keep the address logic in the footer text field’s Calculate > Custom calculation script so Acrobat can rebuild the footer value when the checkboxes change.calculateNow() is a method to force calculation fields to recompute. If it still doesn’t repopulate after that, check the actual checkbox field names/export values and the calculation order, since Acrobat’s calculation order can affect dependent calculated fields.
I hope this helps.
Regards,
Anand Sri.