there is main form and has various forms as response documents , each response form has date field storing current date.
A view dispaly all main documents and all response documents now i need to display response documents only after particular date i.e. 01/01/2008.
I have tried various selection formulas but nothing works for response documents.
Please help.
Thanks in advance
Babita
Subject: RE: View having all main but selected response documents
SELECT Form = “main” | (Form = “Response” & datefield >= [1/1/08])
Note, however, that in a hierarchical view, response documents are visible only if their parent documents are included. So if you have multiple levels of response documents, they might not all be visible in the view even though they are selected. To fix this you would have to make the view non-hierarchical.
Subject: RE: View having all main but selected response documents
Thanks ! it worked.