Question
Need help with syntax error 4: at line 5
The only way this field should populate a yes answer is the first If statement. Any other combination should return a No. What am I missing?
Thanks for the help!
var A = this.getField("QualifyingPercentage").value;
var B = this.getField("CiscoSKU").value;
event.value = "";
if(A>.749000)&& B = Yes)event.value = "Yes";
else if(A>.749000)&& B = No)event.value = "No";
}
