Displaying calculated field only when data exist
hello, is there way display calculated value when data entry field being used. instance, if have several fields vertically aligned, don't want display bunch of zeros if data fields not being used. thank you!!!! you can check rawvalue in calculate event before script. event: calculate //formcalc if(field1.rawvalue ne null) then // write script here endif //javascript if(this.rawvalue != null){ // write script here } thanks srini More discussions in LiveCycle Designer adobe