I'm using crystal 8.5 and within the SQL Expression Editor I want to prevent pulling in future date if it is 7/1/2013 or greater. Other than that I want the max effective date.
My current formula is:
(SELECT MAX(EFFDT)
FROM TABLE TABLE2
WHERE TABLE2.CT_VALUE = TABLE.CT_VALUE and
TABLE2.CFATTRIB = TABLE.CFATTRIB)
My current formula is:
(SELECT MAX(EFFDT)
FROM TABLE TABLE2
WHERE TABLE2.CT_VALUE = TABLE.CT_VALUE and
TABLE2.CFATTRIB = TABLE.CFATTRIB)