Hi hemlata,
in the datagrid take microflow as datasource,
retrieve your entity in the xpath
[createdDate>=addDays([%CurrentDateTime%], -90)]
This will work hope you like the answer.
Hi Hemalath,
For Same day, week, month, Year we have the below options,
[createdDate>='[%BeginOfCurrentMonth%]'][createdDate<='[%EndOfCurrentMonth%]']
But if you put list view inside one data view then you can take value from currentobject so there you can pass any date as start date, addMonths([%CurrentDateTime%],-3),
Hope it helps!
Thanks & Regards,
Manikandan K
Hemlata,
Another way to do this is using time related XPath tokens. Using XPath as a datasouce, you would add this constraint:
[createdDate >= '[%BeginOfCurrentDay%] - 90 * [%DayLength%]']
Documentation for these tokens can be found here: https://docs.mendix.com/refguide/xpath-keywords-and-system-variables/#time-related
Hope that helps,
Mike