Versions Compared

Key

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

...

Expand
titleLogical operators:

And

&&

If A is "true" and B is "true" and C is "true", then return "true", else return "false"

Or

||

If A is "true" or B is "true" or C is "true", then return "true", else return "false"

Equal to

==

If A is equal to B, return "true", else return "false"

Not equal to

!=

If A is not equal to B, return "true", else return "false"

Greater than

>

If A is greater than B, return "true", else return "false"

Greater than or equal to

>=

If A is greater than or equal to B, return "true", else return "false"

Less than

<

If A is less than B, return "true", else return "false"

Less than or equal to

<=

If A is less than or equal to B, return "true", else return "false"

...

  1. Press the Custom Variables button.

  2. In the Script Editor window, customize the formula code.

  3. You can copy sample scripts from the RR. Block Model Custom Variables section and paste them into the Editor window (for easy access: press the Help icon (Question mark) and navigate Rapid Reserver Documentation > RR. Exercises Block Model > RR. Block Model Custom Variables).

...