vote up 1 vote down star
1

I'm trying to find an effective method of filtering Sharepoint lists based on the age of an item. In other words, if I want to find list items that are 7 days old, I should be able to build a filtered view on the data.

There is a hack to build a "Today" field that works, but doesn't filter properly.

Does anyone have any good ideas?

flag

1 Answer

vote up 2 vote down check

Have you tried this: create a Computed column, called 'Expiry', with a formula that amounts to '[Created] + 7 days'. Then use the computed column in your View's filter. Let us know whether this worked or what problems this poses!

link|flag
The idea here is that using [Today] in View filters usually works, compared to having a pseudo column that 'stored' always the current time. So you can instead have your computed column, as described above, and compare that to Today in your View's filtering. – ROXORITY Apr 13 at 21:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.