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!!!!