Skip to main content
Participant
June 7, 2023
Question

Have a checkbox fill certain blank fileds with NA.

  • June 7, 2023
  • 2 replies
  • 689 views

I want to check a checkbox and have it fill certain blank fileds with NA.  Any help would be appreciated.

This topic has been closed for replies.

2 replies

try67
Community Expert
Community Expert
June 7, 2023

You can use something like this as the MouseUp script for that check-box:

 

if (event.target.value=="Off") {
	this.getField("Text1").value = "";
	this.getField("Text2").value = "";
	this.getField("Text3").value = "";
} else {
	this.getField("Text1").value = "N/A";
	this.getField("Text2").value = "N/A";
	this.getField("Text3").value = "N/A";
}
Participant
June 9, 2023

Sweet, thanks

ls_rbls
Community Expert
Community Expert
June 7, 2023

Hi @Randy30336777zxvf ,

 

You may use a JavaScript script.