Cannot make multiple tables?
- This topic has 1 reply, 2 voices, and was last updated 9 years, 2 months ago by .
Viewing 1 post (of 1 total)
Viewing 1 post (of 1 total)
- You must be logged in to reply to this topic.
Home › Forums › Open-Xml-PowerTools › Cannot make multiple tables?
Tagged: document assembler, openxml
The node select for the table is relative to the node selected for the outer repeat section. This would mean that you would have to have XML that looked like this:
<Orders>
<Order>
<Orders>
<Order>
Which I would guess is not what you have. For the select for the table, be aware of what the current node is, which will be based on the enclosing repeat.
Make sense?