...
If a similar functionality is needed, but in the context of data other than dates or DateTimes, eg filtering out results whose IDs are between 5 and 11, that functionality MUST be mimicked by creating two filters. An example of such two filters can be two filters with respective Comparison Types of LessThan with of GreaterThan with a parameter value of 11 and GreaterThanLessThan, with a parameter value of 5.:
GreaterThan
Filters out any results whose data is not greater than the supplied parameter, ie it works exactly like the ">" operator.
...