Error in Reports

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??

0 4 494
4 REPLIES 4

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.

Top Labels in this Space