Answered
How to Check A box if a field is not blank
I want to have a checkbox checked if a certain field is not blank.
I have tried this formula in the text field
if (event.value=="")
{this.getField("Check Box10").value="Off"}
else
{this.getField("Check Box10").value="Yes"}
But it is not working any Ideas?
