Checks if a value x falls in the range specified in y.
x in y
True, if x falls in the range specified in y.
CDate(2005, 06, 11) in ( CDate(2005, 01, 01) to CDate(2005, 8, 1) ) // Returns True.