HI @Shruti1,
I share with you some useful documentation links:
- Creating filters
- Functions
(Functions link, goes to Standard documentation but the majority of them can be applied to classic)
Additionally, I give you a possible solution as a guidance, to solve your issue. Add it inside your schema under Administration/Configuration/Data Schemas.
<sysFilter name="customFilter">
<condition expr="@trp_creation_dt > (GetDate() - 365) AND @trp_provider_id = 'mcd'"/>
</sysFilter>
The GetDate () function here helps us to get the current date minus 365 days allowing us to be more precise when filtering.
Regards,
Celia