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

Popular posts from this blog

magento2 - Magento 2 admin grid add filter to collection -

Android volley - avoid multiple requests of the same kind to the server? -

Combining PHP Registration and Login into one class with multiple functions in one PHP file -