-1

We're trying to schedule a report in Cognos on the 18th of every month showing data from the 18th of the previous month to the 17th of the current month. How would I define this filter? We've previously used something like :

[date] between _add_days(current_date,-7 and _add_days(current_date,-1)

but haven't been able to work out a way to do that start date as months vary in length. Any suggestions would be greatly appriciated

artwg
  • 5
  • 3

1 Answers1

1

Try

[date] between add_days(first_of_month(_add_months(current_date,-1)),18) and add_days(first_of_month(current_date),17)
Daniel Wagemann
  • 741
  • 4
  • 6