I have this simple script that i found below that works well. It combines the 3 check boxes "1a" "1b" and "1c" together into one field. I have entered this script in the new field that I wish the text to be collated in. The only problem i have is that i would really like it so that none of the fields would display the word "off" if the check box was not selected!
This is my script...
event.value = this.getField("1a").value + " " + this.getField("1b").value + " " + this.getField("1c").value;
I also found this code in the forums, this does it perfectly, but only for field "1a" and i can not replicate the script so that it works for all of them.
event.value = this.getField("1a").value; if (event.value == "Off") event.value = '';
If anybody could help me finisg the script it would be greatly appreciated,
Thankyou
George Kaiser