Why does this work:

Code:
Constrain History.Date EQ dStart

but this does not:

Code:
Constrain History as ((History.Date EQ dStart) or (History.Date2 EQ dStart))


Both compile with out issues. The first one returns a record correctly -- the second one returns nothing.

What am I doing wrong?