I need to create a filter that shows me all records that were created 7 or more days ago.
I tried creating a filter using the following expression, but it doesn't work. {DateDiff(Today,ctIdea_View.Request_Date)}>6
Any ideas?
Want to create a filter using {DateDiff(Today,ctIdea_View.Request_Date)}>6
-
- Posts: 31
- Joined: Thu Feb 17, 2011 1:54 pm
- Location: Cuiaba, Brazil
Want to create a filter using {DateDiff(Today,ctIdea_View.Request_Date)}>6
Im not familiar with that function, but you could try:
{DateDiff(Today,ctIdea_View.Request_Date) > 6}
{DateDiff(Today,ctIdea_View.Request_Date) > 6}