I can't seem to find an expression operator to subtract months / years from a date.
In sql normally I'd run a DateAdd(month, - 6, date) or DateAdd(day, -7) to get my comparison.
Is there a good way to do this?
I have a Stored Procedure to populate a list based on a range between dates.
Today / last week / last 30 days / last 6 months / last year
Using radio buttons I want to auto populate parameters with my dates (auto set my expressions)
I got Today / 7 days from today / 30 days ago from today to work.