Description
Returns True for ranges of the form "a To b", "a To_ b", and "Is>=b".
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>=b". IncludesLowerBound returns True on any array if the range that is the Minimum element of the array IncludesLowerBound.
Typical uses
Use when you want to see if a range of data or a range array includes the lower limit value.
Examples
IncludesLowerBound (2 To_ 2)
Returns True.
IncludesLowerBound (Is<10)
Returns False.