WhilePrintingRecords;
Global Stringvar StartDate;
if StartDate <> "" then
StartDate
else
CStr (Maximum ({EMEB_EMP_BENEFITS.BENEFIT_START_DATE}, {@Group: LF#}), "MM/dd/yyyy")
WhilePrintingRecords;
Global Stringvar StartDate;
if StartDate <> "" then
StartDate
else
if Maximum ({EMEB_EMP_BENEFITS.BENEFIT_START_DATE}, {@Group: LF#}) >= Date (2015, 04, 01) then
CStr (Maximum ({EMEB_EMP_BENEFITS.BENEFIT_START_DATE}, {@Group: LF#}), "MM/dd/yyyy")
else
""
Which dates are wrong?
If there is a date in the start date 2 column, is that what the value should be?
mlmcc