Answered
Fill a field with a value only if another field has been filled?
I'm looking to fill a field with a predetermined value only if another field is not blank. I have no idea how to do this.
Any help would be appreciated.
Thanks
I'm looking to fill a field with a predetermined value only if another field is not blank. I have no idea how to do this.
Any help would be appreciated.
Thanks
Use this code as the custom calculation script of LineRow1:
event.value = (this.getField("SourceDescriptionRow1").valueAsString=="") ? "" : "001";
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.