crystal reports - Filter items by last received date -
my report has summary items. want filter these items last received date. how can accomplish this?
you can accomplish behavior in record selection. try like:
{table.lastreceiveddate} >= date(2015, 1, 1) , {table.lastreceiveddate} <= date(2015, 12, 31)
this assumes don't want records outside of date range appear anywhere in report. if that's not wanted, can instead use running total same logic in suppression section.
Comments
Post a Comment