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

Lists in Python -

android - can not access to progress bar in an other activity -

html - Not able to access next element of an array javascript -