How to fill out empty fields automatically?
Hi all,
I'm creating a pdf right now which has to be filled out by our customers.
Due to Audit restrictions every field has to contain a valid value. - if nothing is entered the field should display "n.a.".
My code right now:
event.rc = true;
if (event.value==""|| event.value ==""||event.value==0)
{
event.value="n.a."
}
Problem is: It's valid only for one field and triggered by selecting the cell. - I'm searching for something like a Loop which checks all empty cells after finishing the editing.. (at saving, or signing digitally)
Many thanks in advance, I appreciate it ![]()
kindly regards Fango
