FieldIsBetween 1

Description:

This method returns OK if the value of the current field is between the minimum and maximum values. This method is inclusive. In other words, if the value of the current field is exactly equal to the value of either the maximum or minimum, the method returns OK.

Parameters:

[Required]

Int65

"Minimum value"


[Required]

Int64

"Maximum value"


[Optional]

List

"Radix for error output"

default value: no output

List Values:

AsDecimal

AsHex

Example:

GROUP cmdGroup2Explicit IF (FieldIsBetween 2 6 AsDecimal) If the value being tested is 9, output will be "<2 or >6",

GROUP cmdGroup2Explicit IF (FieldIsBetween 2 6 AsHex)

If the value being tested is 9, output will be "<0x02 or >0x06".