Description
Returns True for ranges of the form "a To b", "a _To b", and "Is<=a".
Arguments
x can be a single range or a range array.
Action
Returns True for ranges of the form "a To b", "a _To b", and "Is<=a". IncludesUpperBound returns True on any array if the range that is the Maximum element of the array IncludesUpperBound.
Typical uses
Use when you want to see if a range of data or a range array includes the upper limit value.
Examples
IncludesUpperBound (2 _To 3)
Returns True.
IncludesUpperBound (Is>=9)
Returns False.