Select docs from a view based on dates selected

Hello,

I have a view in which, the user wants an action inserted which would allow him to enter start and end dates and based on the dates mentioned, I need to select and display the documents which have a date field (say date_created) which falls in between the start and end dates input by the user. How do I achieve this functionality? The docs which fall in between the start and end dates mentioned need to be displayed in the same view.

Thanks in advance.

Subject: Select docs from a view based on dates selected

You could make a view with a selection formule that uses (among other selection) something like [AND ShowInView = “1”].

Now you create a button that selects the selected documents in a NotesDocumentCollection and here you do a StampAll(“ShowInView”, “1”). Of course you need to reset the ShowInView field for all documents that have ShowInView already set prior to setting the selection.