Expand my Community achievements bar.

Learn about Edge Delivery Services in upcoming GEM session

if then else script help

Avatar

Former Community Member
I am trying to have a decimal field called Management that can make the following calculations with two fields ManagerScore and EmployeeScore.



if ManagerScore = null then EmployeeScore *.40

else

(ManagerScore + EmployeeScore) *.40/2



I have tried every possible combination that I can think of in the calculate event using FormCalc or JavaScript and failed every single time. Please help!!!!
2 Replies

Avatar

Former Community Member
Mildred try this:



if (ManagerScore.rawValue == null) {

EmployeeScore.rawValue = EmployeeScore.rawValue*0.40;

} else {

EmployeeScore.rawValue = (EmployeeScore.rawValue*0.40)/2;

}