You will have to check for nulls on each field. For example, you could add the following to the calculate event of the target fiield
// form1.Page7.resultStr::calculate - (JavaScript, client)
var str = "";
if (Page7.pre_pri_sec_1.isNull) {
str = str;
}
else {
str = Page7.pre_pri_sec_1.rawValue;
}
if (Page7.pre_pri_sec_2.isNull) {
str = str + "";
}
else {
str = str + " " + Page7.pre_pri_sec_2.rawValue;
}
if (Page7.pre_pri_sec_3.isNull) {
str = str + "";
}
else {
str = str + " " + Page7.pre_pri_sec_3.rawValue;
}
.....
if (Page7.pre_pri_sec_10.isNull) {
str = str + "";
}
else {
str = str + " " + Page7.pre_pri_sec_10.rawValue;
}
this.rawValue = str;
Steve