how to Retrieve previous 3 months data

0
[createdDate> '[%BeginOfCurrentDay%] - 3 * [%MonthLength%]']   i'm trying to this xpath but current month data is also showing .
asked
1 answers
6

Hey Komal!

The current month data is being shown cause your condition it says show everything from the last three months.

If you want to avoid the current month and for example show only the ones older than 2 months, you can try with this

[createdDate> '[%BeginOfCurrentDay%] - 3 * [%MonthLength%]' and createdDate< '[%BeginOfCurrentDay%] - 2 * [%MonthLength%]' ]  

 

Hope this helps you.

Kind regards

answered