Contract Labor Rates
Good afternoon,
I need some help writing a script for a negotiation form. I have multiple contracts (CI-2485A, CI-2485B, CI-2485C, etc.) each company has the same professions but different rates.
If I put CI-2485A in the Contract ID field, I want that company's rates to populate the rates for each profession.
Do I have to use this script under each profession or is there a quicker way?
var a = this.getField("Contract ID")
if (event.value == "CI-2485A") {
value = "Amount 1";
} else if (event.value == " CI-2485B") {
value = "Amount 2";
} else if (event.value == " CI-2485C") {
value = "Amount 3";
} else {
// do nothing
}

Thank you,
Badhawg66
