I was working on a project an would like to use the Parameterized Conditionals feature. I read the manual and it wasn't entirely clear what parameters the ' value' field accepts.
For example:
{{ParameterName||"2015-01-01"}}
This limits on date having value "2015-01-01. If I want to filter on say the last month, then in SQL I would use: ...WHERE DateColumn >= DATEADD(MONTH, -1, GETDATE())
My goal is to filter all database entries that are added last month (I have a DateTime field with the date).
How do I specify this with a parameterized conditional? And which values can I use exactly?