Let's say I have an XML-file looking like this:
<messages>
<message id="1">
<text>Hello</text>
<text>How are you?</text>
<from>Mr. Nice</from>
</message>
<message id="1">
<text>Howdy</text>
<text>What's up?</text>
<from>Mrs. Nice</from>
</message>
</messages>
How do I then populate a sectioned table like this:
HEADER 1 = Mr.Nice
TABLECELL 1.1 = Hello, TABLECELL 1.2 = How are you?
HEADER 2 = Mrs.Nice
TABLECELL 2.1 = Howdy, TABLECELL 2.2 = What's up?
Thanks in advance!
// Sebastian