Answered
I have a drop down box with the following options:
Select Filing Status
Single
Joint
I need to create a calculation based on the answer chosen in the drop down box. What I have so far is not working. If Single is chosen, the result needs to be Text3 + 15. If Joint is chosen, the result needs to be Text3 + 30.
var a = this.getField("ComboBox3").value;
var b = this.getField("Text3").value;
if(a = "Single")
{
event.value = b + 15;
}
else
{
event.value = b + 30;
}
George Kaiser