Link to home
Start Free TrialLog in
Avatar of sbaek
sbaek

asked on

Trying to create a view for response docs only.

Hi I have two forms with one form used as a response to the other... one parent and the other a child form... When I create a view with a selection formula with only the child doc no documents are selected...
ie Selection (Form = "child")
I have to do the following to select the documents
selection ((Form = "parent")|(Form="Child))
But this creates a row for the parent doc then follows with all of it's repsonses then the next parent doc and so on

Is there a way I can create a view to show all the response docs without selecting the coresponding parent docs?
ASKER CERTIFIED SOLUTION
Avatar of ghassan99
ghassan99

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of ghassan99
ghassan99

I noticed you mentioned all response docs, then you can omit the form's name from the selection like this:
SELECT @IsResponseDoc

-Gus