i have two formulas, purpose is same but difference in order of selection:
//formula1
{?EvalDate} >= {OBJ.EFFDATE} and
{?EvalDate} < {OBJ.ENDDATE}
//formula2
{OBJ.EFFDATE} <= {?EvalDate}and
{OBJ.ENDDATE} > {?EvalDate}
Will both formulas return same results? I have tried both formulas and checked the SQL Query and crystal creates it like this for both formulas: And, also I don't know why "=" sign does not appear in the query?
WHERE
OBJ."EFFDATE" < {ts '2005-01-02 00:00:00.00'} AND
OBJ."ENDDATE" > {ts '2005-01-01 23:59:59.00'}
Thanks.
//formula1
{?EvalDate} >= {OBJ.EFFDATE} and
{?EvalDate} < {OBJ.ENDDATE}
//formula2
{OBJ.EFFDATE} <= {?EvalDate}and
{OBJ.ENDDATE} > {?EvalDate}
Will both formulas return same results? I have tried both formulas and checked the SQL Query and crystal creates it like this for both formulas: And, also I don't know why "=" sign does not appear in the query?
WHERE
OBJ."EFFDATE" < {ts '2005-01-02 00:00:00.00'} AND
OBJ."ENDDATE" > {ts '2005-01-01 23:59:59.00'}
Thanks.