Avatar

Level 2

Is it possible to calculate a field as "Complete" or "Not Complete" based on completion of all the form's required fields?

For example, the form is is named "Form" and the subform is named "Subform." I was thinking of coding something in JavaScript, like the following:

if(Form.Subform.execValidate == false);

{

this.rawValue = "Not Complete"

}

else

this.rawValue = "Complete"

Yet, the above JavaScript doesn't seem to be working?

That said, I have a lot of required fields so I'd prefer not to list all of them. Please let me know if I'm on the right track!