Avatar

Level 2

Give me a few minutes to mock a form up.

That said, I've placed the following code into the "calculate" event:

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

{

this.rawValue = "Not Complete"

}

else

this.rawValue = "Complete"

I want the field to show "Not Complete" or "Complete" based on the whether or not the required fields have been filled. It appears that I can't get this to work unless I put it on a "click" event of a button.