If this doesn't work, then create 2 calculated fields:
Field 1 should have formula [today]+30
Field 2 should have formula [today]-30
Then make filter that displays records with field1 value less than [today]
and field 2 value greater than [today].
Hope I've been clear enough.
Boris Gomiunik
B4Contact
www.b4contact.com
"DavidInTexas" <DavidI...@discussions.microsoft.com> wrote in message
news:EF7B7918-857F-4C2A...@microsoft.com...
> I want to display a view that shows only those records who have a value in
a
> Date field that is plus-or-minus 30 days from today.
>
> I have seen the posts that explain how to do this based on the Date
Created
> or Date Modified, but I don't want to use these values - rather, I want to
> use a value that has been entered into a specific field in each record.
I'm open to try other things. I'm surprised that this is so hard to do with
this software!
The calculated fields are tricky. Here's something I found on a blog. I'll
probably write up a better blog about creating calculated fields because
it's an area that needs some documentation as you can do a lot, you just
need to know how to do it. Hope this helps:
1. Add a new field to the List or Document Library named Aging or some such.
2. Set the Type to Calculated.
3. Set the Description to "(Filter - Last 5 days)" or some such.
4. Set the formula to =DATE(YEAR(Modified),MONTH(Modified),DAY(Modified)+5)
5. Set the 'The data type returned from this formula is:' to Date and Time
6. Set the 'Date and Time Format:' to Date Only
On the View in question, set the filter to Aging is greater than (or equal
to) [Today]
The filtered view will now only show items that have been modified in the
last 5 days. You can adjust the formula for the field (or add another) to
get a different filter (last 10 days, last month, last year, etc).
Where you see "Modified" use the field name [FieldName] for your values.
-Bil
make "Calculated field" for field 1 and field 2. I know it works because
I've made something similar.
"DavidInTexas" <DavidI...@discussions.microsoft.com> wrote in message
news:6ABE54BD-2327-4E02...@microsoft.com...