Question
Percentage of Weekly Salary
All, I have an annual salary field on a form that I have another field that needs to compute the weekly salary by 60%.
This is what I have an it isn't working. What am I missing?
var EESal=getField("AnnualSalary").value;
var Percent=.60;
Var WklySal=EESal/52;
event.value=WklySal*Percent;
