Skip to main content
Known Participant
July 12, 2022
Answered

how to get value from a field to influence another field

  • July 12, 2022
  • 1 reply
  • 474 views

Hi All

I'm trying to make 2 fields one is "Grade" and the other is "Result". I'm trying to make it so that if I put in a certain grade, it'll show pass/fail. I googled how to do this but couldn't get it to work. Any pointers is greatly appreciated.

 

I have a validation script on "Result" as:

 

var fieldA = this.getField("Grade").value;
if (fieldA=="A" || fieldA=="B" || fieldA=="C")
event.value = ("Pass");
else
{
event.value = ("Fail");
}

This topic has been closed for replies.
Correct answer try67

It should be a calculation script, and drop the parentheses around the string values.

1 reply

try67
Community Expert
try67Community ExpertCorrect answer
Community Expert
July 12, 2022

It should be a calculation script, and drop the parentheses around the string values.

Linh5FC5Author
Known Participant
July 12, 2022

Thank you!