If you are unable to create a new account, please email support@bspsoftware.com

 

News:

MetaManager - Administrative Tools for IBM Cognos
Pricing starting at $2,100
Download Now    Learn More

Main Menu

Last three months Filter - Help me!

Started by lorenmario, 26 Jul 2013 10:54:58 AM

Previous topic - Next topic

lorenmario

Hello!

I am creating a report using a relational database. I need to insert a filter that I will always return the last three months from the current date.

How to do this in Report Studio?
Thank you!!
;)

Lynn

Create a filter with this expression:

[YourQueryItemDate] >= _add_months(current_date, -3)

Web2CRM

Try the expression below in your filter:

[DataItemDate] between _first_of_month( _add_months(current_date, -3) ) and current_date

lorenmario