I am generating a report which selects all the rows which has a date value of greater than 25 so in my filter clause then condition which I mentioning is today()-[Date] > 25โฆ is it right or wrong??
You are probably looking for DAY([Date])>25.
This will return me all was value of dates which are dates above 25 but not the difference between today and DateField which exceeds 25 days.
I am trying to filter all of my customer orders which have not been delivered within 25 days
If you want to select records where the โDateโ is 25 days ago or more you should write:
([Date] + 25 ) <= TODAY()
Writing the formula like [Date]<=TODAY()-25 your app would need to calculate the subtraction only once.
User | Count |
---|---|
18 | |
11 | |
11 | |
8 | |
4 |