Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Another example is all of this in the calculate property:

(function calculateMyValues () {

     if(/form/obs/weight2/value==6101 OR /form/obs/weight3/value==6101 OR /form/obs/weight4/value==6101) {
         value = 4;
    }

    else if (/form/obs/weight2/value==6102 OR /form/obs/weight3/value==6102) {
        value = 2;
}
} calculateMyValues) ();

If the field you are comparing with is a multiple select, then change 6101 to '6101^NAME^99DCT'

...