Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
<Container>
<Content>...</Content>
<Content>...</Content>
...
<Content>...</Content>
</Container>
What I've got is a document with lots of levels, but is is basically like this: <Container>
<Content>...</Content>
<Content>...</Content>
...
<Content>...</Content>
</Container>
What I want to do is filter the <Content> element that have been created based on their sub-elements.
So I use tExtractXMLField to break the document into individual document objects for each <Content> element, and filter them using tFilterRow. That works fine.