Good afternoon all,
I am looking for a way to present an array of arrays in a printable, human readable way.
For example, I have a "Get Items" action which returns multiple results, and for each of those results, a second "Get Items" action runs which also returns multiple results. What I would like is to repeat a table of defined structure, 1-n times.
I am comfortable with Word Templates and repeating sections, but this limits me to a single table with 1-n rows. This is slightly different to my current needs.
The array of arrays is similar to the below in structure, with the number of "Thing's" being variable;
[
{
"Thing Name": "Thing 1",
"Thing Contents": [
{
"Property 1": "123",
"Property 2": "labore et dolore",
"Property 3": "magna aliqua."
},
{
"Property 1": "456",
"Property 2": "Ut enim ad",
"Property 3": "minim veniam,"
},
{
"Property 1": "789",
"Property 2": "quis nostrud exercitation",
"Property 3": "ullamco laboris nisi"
}
]
},
{
"Thing Name": "Thing 2",
"Thing Contents": [
{
"Property 1": "ABC",
"Property 2": "Lorem ipsum",
"Property 3": "dolor sit amet"
},
{
"Property 1": "DEF",
"Property 2": "consectetur adipiscing",
"Property 3": "elit, sed do"
},
{
"Property 1": "GHI",
"Property 2": "eiusmod tempor",
"Property 3": "incididunt ut"
}
]
},
{
"Thing Name": "Thing 3",
"Thing Contents": [
{
"Property 1": "A1",
"Property 2": "ut aliquip ex ea",
"Property 3": "commodo consequat"
},
{
"Property 1": "B2",
"Property 2": "Duis aute irure",
"Property 3": "dolor in reprehenderit"
},
{
"Property 1": "C3",
"Property 2": "in voluptate velit",
"Property 3": "esse cillum dolore eu"
}
]
}
]
edit: Correction to structure, thankyou @eliotcole
This information needs to be presented in a human readable format, such as the two examples below;
----------------------------------------------
Merged table,
Thing 1 | ||
Property 1 | Property 2 | Property 3 |
123 | labore et dolore | magna aliqua. |
456 | Ut enim ad | minim veniam, |
899 | quis nostrud exercitation | ullamco laboris nisi |
Thing 2 | ||
Property 1 | Property 2 | Property 3 |
ABC | Lorem ipsum | dolor sit amet |
DEF | consectetur adipiscing | elit, sed do |
GHI | eiusmod tempor | incididunt ut |
Thing 3 | ||
Property 1 | Property 2 | Property 3 |
ABC | ut aliquip ex ea | commodo consequat |
DEF | Duis aute irure | dolor in reprehenderit |
GHI | in voluptate velit | esse cillum dolore eu |
------------ OR ---------------------
Discrete table repeated 1-n times.
Thing 1
Property 1 | Property 2 | Property 3 |
123 | labore et dolore | magna aliqua. |
456 | Ut enim ad | minim veniam, |
899 | quis nostrud exercitation | ullamco laboris nisi |
Thing 2
Property 1 | Property 2 | Property 3 |
ABC | Lorem ipsum | dolor sit amet |
DEF | consectetur adipiscing | elit, sed do |
GHI | eiusmod tempor | incididunt ut |
Thing 3
Property 1 | Property 2 | Property 3 |
ABC | ut aliquip ex ea | commodo consequat |
DEF | Duis aute irure | dolor in reprehenderit |
GHI | in voluptate velit | esse cillum dolore eu |
-----------------------------------------
The only solutions I can currently see are;
------------------------------------------
Limit to a 1d array and output a table such as,
Thing 1 / Item 1 / Property 1 | 123 |
Thing 1 / Item 1 / Property 2 | labore et dolore |
Thing 1 / Item 1 / Property 3 | magna aliqua. |
Thing 1 / Item 2 / Property 1 | 456 |
Thing 1 / Item 2 / Property 2 | Ut enim ad |
Thing 1 / Item 2 / Property 3 | minim veniam, |
and so on...
This looks awful, and does not meet the requirements.
--------------OR------------------------
Create a document per array item (single page document, each containing a discrete table), and merge the pages to a single document in another action.
Page 1.
Thing 1
Property 1 | Property 2 | Property 3 |
123 | labore et dolore | magna aliqua. |
456 | Ut enim ad | minim veniam, |
899 | quis nostrud exercitation | ullamco laboris nisi |
Page 2.
Thing 2
Property 1 | Property 2 | Property 3 |
ABC | Lorem ipsum | dolor sit amet |
DEF | consectetur adipiscing | elit, sed do |
GHI | eiusmod tempor | incididunt ut |
Page 3.
Thing 3
Property 1 | Property 2 | Property 3 |
ABC | ut aliquip ex ea | commodo consequat |
DEF | Duis aute irure | dolor in reprehenderit |
GHI | in voluptate velit | esse cillum dolore eu |
This will leave huge amounts of blank space on each page, and is not a good solution to the problem.
---------------------------------------------------
I have tried nesting repeating sections in the word template, however the connector only recognizes the first control.
Any suggestions would be greatly appreciated. Thanks in advance.
Thankyou to @eliotcole for suggestions.
Screen shots of flow below for reference.
Hi, @Anonymous , hope you don't mind, but I've a couple of hopefully easy requests to assist whomever helps you, here. If at all possible, could you please:
Looking at that JSON, it doesn't appear to be nested arrays, more just extra objects within each array item. I've put the rest of this in a 'spoiler' to make it easier on the eyes in terms of the thread, however ... basically if you could confirm if that's the extent of the arrays on hand here, it does only look like one level of array right now.
I've taken the liberty of sticking the square brackets on what you showed above, and plopping it in a Javascript code block:
[
{
"Thing Name": "Thing 1",
"Thing Contents": {
"Property 1": "123",
"Property 2": "456",
"Property 3": "789"
}
},
{
"Thing Name": "Thing 2",
"Thing Contents": {
"Property 1": "ABC",
"Property 2": "DEF",
"Property 3": "GHI"
}
},
{
"Thing Name": "Thing 3",
"Thing Contents": {
"Property 1": "A1",
"Property 2": "B2",
"Property 3": "C3"
}
}
]
Was that what you meant? Or had you constructed the JSON just slightly off?
Arrays within that might look more like this:
[
{
"Thing Name": "Thing 1",
"Thing Contents": [
{
"Item": 1,
"Property": "123"
},
{
"Item": 2,
"Property": "456"
},
{
"Item": 3,
"Property": "789"
}
]
},
{
"Thing Name": "Thing 2",
"Thing Contents": [
{
"Item": 1,
"Property": "ABC"
},
{
"Item": 2,
"Property": "DEF"
},
{
"Item": 3,
"Property": "GHI"
}
]
}
]
Or this:
[
{
"Thing Name": "Thing 1",
"Thing Contents": [
"123",
"456",
"789"
]
},
{
"Thing Name": "Thing 2",
"Thing Contents": [
"ABC",
"DEF",
"GHI"
]
}
]
Is it actually either of the examples that I pushed out for you, there?
Also, a quick edit with a potential work around:
Have you tried using the HTML table function?
Thanks for the advice!
Yes, I have used HTML tables, where I am embedding the information into the body of an email. My understanding is that the word connector does not have the ability to parse HTML code, example HERE . If I could do so, it would be a possible solution, as I could find ways to manipulate the HTML structure within power automate.
I have also toyed with generating XML code within Power Automate and using that as the content of creating a file. From memory this was a laborious process though, and vulnerable to bugs. errors from the developer side.
The intention is to generate a printable document, and printing an email comes with the lack of control on formatting etc. that you get with a Word document or PDF. It also makes it harder for me to control with normal SharePoint document management practices.
I absolutely understand your concern there.
You could try to leverage the excel API to beautify the new file, then use this (potentially not working!) Graph API call to convert the Excel to a PDF.
However that might be a bit painful.
Anyway, I'm working on a solution which will present your arrays as three separate arrays, that part isn't an issue. That can then be made in to your second preferential example, which looks better to me.
What is an issue is how you even get the template thing to make any tables. 😅 Ah ... I see, we're talking Dynamics 365 templates that I don't have a subscription for. 🤕
In my experience with the Word Template action, once you wrap your head around the tagging process its very simple.
I always name my tags to match the key in a key:object pair (I don't know if that is strictly necessary)
I then switch to array inputs, and use an array variable to populate the repeating table.
The solution I 'want' to my problem above is to nest repeating sections, something like
Ok, I tried this before and did not see the nested table at all. I must have done something different in building the demonstration here.
Ill work on this and see if I can get it to work after all!
@eliotcole wrote:I absolutely understand your concern there.
You could try to leverage the excel API to beautify the new file, then use this (potentially not working!) Graph API call to convert the Excel to a PDF.
However that might be a bit painful.
Anyway, I'm working on a solution which will present your arrays as three separate arrays, that part isn't an issue. That can then be made in to your second preferential example, which looks better to me.
What is an issue is how you even get the template thing to make any tables. 😅 Ah ... I see, we're talking Dynamics 365 templates that I don't have a subscription for. 🤕
Sorry, yes its the "Premium" word connector. 🙄
Also, on breaking the single array to 3 separate arrays, if I were to go down this path I would need to do so in a dynamic way, as it will not always be 3, it may be 1 or 100 or anything in-between.
Cool, cool ... just quickly ... is there an 'ideal' way that your data would be set in before you push it into the Word Template?
Like, I'm imagining this shouldn't need to be done in Apply to each runs once you have the data. Look at that button on the right on the Table_Repeat / Table_Repeat nest box.
So, what I'd suggest you do, is fill that in manually, how it would work if you had to do that each time ... then click that button, and show me here what it looks like.
Because I 100% believe that I can build that exact input for you without using loops. (select and possible xpath stuff are amazing here)
I absolutely will do. It's 11pm in Victoria, Australia so will have to be a tomorrow job!
Thanks for all you input so far!!
Oh, yeah, like I say elsewhere, we're doing this a much more data agnostic way.
I can make it so that it builds the perfect structure each time.
Sleep well! 👍
@Anonymous wrote:
@eliotcole wrote:
I absolutely understand your concern there.
You could try to leverage the excel API to beautify the new file, then use this (potentially not working!) Graph API call to convert the Excel to a PDF.
However that might be a bit painful.
Anyway, I'm working on a solution which will present your arrays as three separate arrays, that part isn't an issue. That can then be made in to your second preferential example, which looks better to me.
What is an issue is how you even get the template thing to make any tables. 😅 Ah ... I see, we're talking Dynamics 365 templates that I don't have a subscription for. 🤕
Sorry, yes its the "Premium" word connector. 🙄
Also, on breaking the single array to 3 separate arrays, if I were to go down this path I would need to do so in a dynamic way, as it will not always be 3, it may be 1 or 100 or anything in-between.
So I have done some more testing on this, and the inner repeated table is not getting populated.
The input array looks like this,
[
{
"Tag 1": "Value 1",
"Tag 2": "Value 2",
"Tag 3": [
{
"nest_1": "ABC",
"nest_2": "DEF",
"nest_3": "GHI"
},
{
"nest_1": "JKL",
"nest_2": "MNO",
"nest_3": "PQR"
}
]
},
{
"Tag 1": "Value 4",
"Tag 2": "Value 5",
"Tag 3": [
{
"nest_1": "123",
"nest_2": "456",
"nest_3": "789"
},
{
"nest_1": "987",
"nest_2": "654",
"nest_3": "321"
}
]
}
]
The action accepted the inputs, and generated the document, but the output did not contain the nested array at all,
Looking at the manual input,
I would expect to see a nested input if this were possible, but I do not.
Manually adding an item results in this,
Where if the nesting was recognized, I would expect to see something like this (excuse ms paint editing),
At this point I don't think it is an input structure issue, but a limitation of the word template action/ Word connector.
I will pursue the XML and graph API paths to get the output I want.
Just type some example details in those fields on the Populate a word template action, and click that tiny 't' icon, that's what I'd like to see how it fills that up. 🙂
No worries,
No repeats
One repeat,
OK, I got it, cheers!
Essentially you need to keep the main arrays, and 'de-nest' the inside one(s).
Just to confirm, there isn't ever this situation, is there?
[
{
"Tag 1": "Value 1",
"Tag 2": "Value 2",
"Tag 3": [
{
"nest_1": "ABC",
"nest_2": "DEF",
"nest_3": "GHI"
},
{
"nest_1": "JKL",
"nest_2": "MNO",
"nest_3": "PQR"
}
],
"Tag 4": [
{
"nest_1": "ABC123",
"nest_2": "DEF456",
"nest_3": "GHI789"
},
{
"nest_1": "JKL123",
"nest_2": "MNO123",
"nest_3": "PQR123"
}
]
},
{
"Tag 1": "Value 4",
"Tag 2": "Value 5",
"Tag 3": [
{
"nest_1": "123",
"nest_2": "456",
"nest_3": "789"
},
{
"nest_1": "987",
"nest_2": "654",
"nest_3": "321"
}
]
}
]
Ie ... a second nested array, because then that's painful 😅
OK, @Anonymous, this should work, but hopefully the workings inside it should help you find a way to tweak whatever you need in the future if it breaks.
Zero Apply to each runs:
Here's the flow that you just need to place after your current array is generated.
inputArrayCNST represents the example array data that you've provided, you can either make that compose action and copy my naming schemes, or just replace references to it (outputs('inputArrayCNST')) wherever required.
This is simply a carriage return, a single new line. It's needed for the final filter which checks for items that start with a new line.
This is the first Select action which simply levels the playing field producing all of the items in the entire array at any level and moves them to the top level.
It also takes the key (field name) and value (field value) ... values ... and puts them in their own value field. You'll see why in the next step.
It works by initially using an xpath() on the original array as such:
xpath(
xml(
json(
concat(
'{ "root": { "columns": ',
string(
outputs('inputArrayCNST')
),
' } }'
)
)
),
'/root/columns//*'
)
Then it has two expressions which decode:
It's too long to explain here why that key expression is so long, but essentially it is ensuring that it's not a mess of XML encoded text. Those expressions are in the below spoler:
replace(
if(
startsWith(
string(
xpath(
item(),
'name(/*)'
)
),
'_x003'
),
if(
equals(
length(
string(
xpath(
item(),
'name(/*)'
)
)
),
7
),
substring(
string(
xpath(
item(),
'name(/*)'
)
),
5,
1
),
concat(
substring(
string(
xpath(
item(),
'name(/*)'
)
),
5,
1
),
substring(
string(
xpath(
item(),
'name(/*)'
)
),
7
)
)
),
string(
xpath(
item(),
'name(/*)'
)
)
),
'_x0020_',
' '
)
Value
xpath(
item(),
'string(//*)'
)
This looks at the Value value (item()?['Value']) for each item, and discards any which begin with a new line. This is because the xpath() in the previous step converted the nested arrays to text and when converting back ... it slides a carriage return in there. There may be a better way to handle this part, I'll admit, because if any other fields natively start with a new line, it will discard them.
It runs on the body of the previous action and then uses the following expression if you use the advanced look:
@not(startsWith(item()?['Value'], outputs('cCNST')))
I didn't name this, but at this point it doesn't matter. Here you're just reversing the odd key/value structure back to something more natural. So it runs on the body of the previous filter and then uses the Key value (item()?['Key']) for the key, and the Value value (item()?['Value']) for the values.
This then produces the following data for input directly into the 'text mode' of your Word template action:
[
{
"Tag 1": "Value 1"
},
{
"Tag 2": "Value 2"
},
{
"nest_1": "ABC"
},
{
"nest_2": "DEF"
},
{
"nest_3": "GHI"
},
{
"nest_1": "JKL"
},
{
"nest_2": "MNO"
},
{
"nest_3": "PQR"
},
{
"Tag 1": "Value 4"
},
{
"Tag 2": "Value 5"
},
{
"nest_1": "123"
},
{
"nest_2": "456"
},
{
"nest_3": "789"
},
{
"nest_1": "987"
},
{
"nest_2": "654"
},
{
"nest_3": "321"
}
]
Input into the box like so:
It's important that the icon on the side does not look like the following when you place that in:
-----
AAAAND I've just realised that it's not quite right. Still, gimme a second and I'll have parralels that split all that up.
I'll try to come back to this later.
@eliotcole that is next level! Huge efficiency over nested apply to each loops.
I will definitely be referencing this in the future.
I have found a solution to my original issue, around producing Word document tables.
The process is messy, and requires a 3rd party connector.
TLDR:
Create Word template
Save as XML
Split XML into parts
(In Power Automate)
Loop through data, replacing values and combining sections of XML to form the desired tables.
Recombine all XML components to form a valid document.
Convert document to PDF
The major issue with this approach is the version of word document. It is possible to create a viable document using mashed together xml like I am doing, however this will only work if saved as a '.doc' file. Saving as a '.docx' results in a corrupt file which cannot be opened.
Unfortunately, word online and the convert word doc to PDF action do not recognize '.doc' files. THis where it was necessary to use a 3rd party connector which could handle the '.doc' file type.
The flow looks like this:
I am getting values from SharePoint Lists for this example.
The xml doc is split into parts that can be called and re-combined as needed.
A string variable is used to take the pieces of XML as they are built. As the information is looped through, the are appended to to the variable.
The XML is then closed off, and the value used to create a document. Note the '.doc' format.
A third party connector is then used to convert to PDF
Template:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?mso-application progid="Word.Document"?>
<w:wordDocument xmlns:aml="http://schemas.microsoft.com/aml/2001/core" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex" xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex" xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex" xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex" xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex" xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex" xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex" xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex" xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex" xmlns:cr="http://schemas.microsoft.com/office/comments/2020/reactions" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink" xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:oel="http://schemas.microsoft.com/office/2019/extlst" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.microsoft.com/office/word/2003/wordml" xmlns:wx="http://schemas.microsoft.com/office/word/2003/auxHint" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wsp="http://schemas.microsoft.com/office/word/2003/wordml/sp2" xmlns:sl="http://schemas.microsoft.com/schemaLibrary/2003/core" w:macrosPresent="no" w:embeddedObjPresent="no" w:ocxPresent="no" xml:space="preserve"><w:ignoreSubtree w:val="http://schemas.microsoft.com/office/word/2003/wordml/sp2"/><o:DocumentProperties><o:Author>Thomas Jeremiah</o:Author><o:LastAuthor>Thomas Jeremiah</o:LastAuthor><o:Revision>3</o:Revision><o:TotalTime>7</o:TotalTime><o:Created>2022-05-25T10:28:00Z</o:Created><o:LastSaved>2022-05-25T10:34:00Z</o:LastSaved><o:Pages>1</o:Pages><o:Words>8</o:Words><o:Characters>50</o:Characters><o:Lines>1</o:Lines><o:Paragraphs>1</o:Paragraphs><o:CharactersWithSpaces>57</o:CharactersWithSpaces><o:Version>16</o:Version></o:DocumentProperties><w:fonts><w:defaultFonts w:ascii="Calibri" w:fareast="Calibri" w:h-ansi="Calibri" w:cs="Times New Roman"/><w:font w:name="Times New Roman"><w:panose-1 w:val="02020603050405020304"/><w:charset w:val="00"/><w:family w:val="Roman"/><w:pitch w:val="variable"/><w:sig w:usb-0="E0002EFF" w:usb-1="C000785B" w:usb-2="00000009" w:usb-3="00000000" w:csb-0="000001FF" w:csb-1="00000000"/></w:font><w:font w:name="Cambria Math"><w:panose-1 w:val="02040503050406030204"/><w:charset w:val="00"/><w:family w:val="Roman"/><w:pitch w:val="variable"/><w:sig w:usb-0="00000003" w:usb-1="00000000" w:usb-2="00000000" w:usb-3="00000000" w:csb-0="00000001" w:csb-1="00000000"/></w:font><w:font w:name="Calibri"><w:panose-1 w:val="020F0502020204030204"/><w:charset w:val="00"/><w:family w:val="Swiss"/><w:pitch w:val="variable"/><w:sig w:usb-0="E4002EFF" w:usb-1="C000247B" w:usb-2="00000009" w:usb-3="00000000" w:csb-0="000001FF" w:csb-1="00000000"/></w:font></w:fonts><w:styles><w:versionOfBuiltInStylenames w:val="7"/><w:latentStyles w:defLockedState="off" w:latentStyleCount="376"><w:lsdException w:name="Normal"/><w:lsdException w:name="heading 1"/><w:lsdException w:name="heading 2"/><w:lsdException w:name="heading 3"/><w:lsdException w:name="heading 4"/><w:lsdException w:name="heading 5"/><w:lsdException w:name="heading 6"/><w:lsdException w:name="heading 7"/><w:lsdException w:name="heading 8"/><w:lsdException w:name="heading 9"/><w:lsdException w:name="caption"/><w:lsdException w:name="Title"/><w:lsdException w:name="Subtitle"/><w:lsdException w:name="Strong"/><w:lsdException w:name="Emphasis"/><w:lsdException w:name="Normal Table"/><w:lsdException w:name="Table Simple 1"/><w:lsdException w:name="Table Simple 2"/><w:lsdException w:name="Table Simple 3"/><w:lsdException w:name="Table Classic 1"/><w:lsdException w:name="Table Classic 2"/><w:lsdException w:name="Table Classic 3"/><w:lsdException w:name="Table Classic 4"/><w:lsdException w:name="Table Colorful 1"/><w:lsdException w:name="Table Colorful 2"/><w:lsdException w:name="Table Colorful 3"/><w:lsdException w:name="Table Columns 1"/><w:lsdException w:name="Table Columns 2"/><w:lsdException w:name="Table Columns 3"/><w:lsdException w:name="Table Columns 4"/><w:lsdException w:name="Table Columns 5"/><w:lsdException w:name="Table Grid 1"/><w:lsdException w:name="Table Grid 2"/><w:lsdException w:name="Table Grid 3"/><w:lsdException w:name="Table Grid 4"/><w:lsdException w:name="Table Grid 5"/><w:lsdException w:name="Table Grid 6"/><w:lsdException w:name="Table Grid 7"/><w:lsdException w:name="Table Grid 8"/><w:lsdException w:name="Table List 1"/><w:lsdException w:name="Table List 2"/><w:lsdException w:name="Table List 3"/><w:lsdException w:name="Table List 4"/><w:lsdException w:name="Table List 5"/><w:lsdException w:name="Table List 6"/><w:lsdException w:name="Table List 7"/><w:lsdException w:name="Table List 8"/><w:lsdException w:name="Table 3D effects 1"/><w:lsdException w:name="Table 3D effects 2"/><w:lsdException w:name="Table 3D effects 3"/><w:lsdException w:name="Table Contemporary"/><w:lsdException w:name="Table Elegant"/><w:lsdException w:name="Table Professional"/><w:lsdException w:name="Table Subtle 1"/><w:lsdException w:name="Table Subtle 2"/><w:lsdException w:name="Table Web 1"/><w:lsdException w:name="Table Web 2"/><w:lsdException w:name="Table Web 3"/><w:lsdException w:name="Table Theme"/><w:lsdException w:name="No Spacing"/><w:lsdException w:name="Light Shading"/><w:lsdException w:name="Light List"/><w:lsdException w:name="Light Grid"/><w:lsdException w:name="Medium Shading 1"/><w:lsdException w:name="Medium Shading 2"/><w:lsdException w:name="Medium List 1"/><w:lsdException w:name="Medium List 2"/><w:lsdException w:name="Medium Grid 1"/><w:lsdException w:name="Medium Grid 2"/><w:lsdException w:name="Medium Grid 3"/><w:lsdException w:name="Dark List"/><w:lsdException w:name="Colorful Shading"/><w:lsdException w:name="Colorful List"/><w:lsdException w:name="Colorful Grid"/><w:lsdException w:name="Light Shading Accent 1"/><w:lsdException w:name="Light List Accent 1"/><w:lsdException w:name="Light Grid Accent 1"/><w:lsdException w:name="Medium Shading 1 Accent 1"/><w:lsdException w:name="Medium Shading 2 Accent 1"/><w:lsdException w:name="Medium List 1 Accent 1"/><w:lsdException w:name="List Paragraph"/><w:lsdException w:name="Quote"/><w:lsdException w:name="Intense Quote"/><w:lsdException w:name="Medium List 2 Accent 1"/><w:lsdException w:name="Medium Grid 1 Accent 1"/><w:lsdException w:name="Medium Grid 2 Accent 1"/><w:lsdException w:name="Medium Grid 3 Accent 1"/><w:lsdException w:name="Dark List Accent 1"/><w:lsdException w:name="Colorful Shading Accent 1"/><w:lsdException w:name="Colorful List Accent 1"/><w:lsdException w:name="Colorful Grid Accent 1"/><w:lsdException w:name="Light Shading Accent 2"/><w:lsdException w:name="Light List Accent 2"/><w:lsdException w:name="Light Grid Accent 2"/><w:lsdException w:name="Medium Shading 1 Accent 2"/><w:lsdException w:name="Medium Shading 2 Accent 2"/><w:lsdException w:name="Medium List 1 Accent 2"/><w:lsdException w:name="Medium List 2 Accent 2"/><w:lsdException w:name="Medium Grid 1 Accent 2"/><w:lsdException w:name="Medium Grid 2 Accent 2"/><w:lsdException w:name="Medium Grid 3 Accent 2"/><w:lsdException w:name="Dark List Accent 2"/><w:lsdException w:name="Colorful Shading Accent 2"/><w:lsdException w:name="Colorful List Accent 2"/><w:lsdException w:name="Colorful Grid Accent 2"/><w:lsdException w:name="Light Shading Accent 3"/><w:lsdException w:name="Light List Accent 3"/><w:lsdException w:name="Light Grid Accent 3"/><w:lsdException w:name="Medium Shading 1 Accent 3"/><w:lsdException w:name="Medium Shading 2 Accent 3"/><w:lsdException w:name="Medium List 1 Accent 3"/><w:lsdException w:name="Medium List 2 Accent 3"/><w:lsdException w:name="Medium Grid 1 Accent 3"/><w:lsdException w:name="Medium Grid 2 Accent 3"/><w:lsdException w:name="Medium Grid 3 Accent 3"/><w:lsdException w:name="Dark List Accent 3"/><w:lsdException w:name="Colorful Shading Accent 3"/><w:lsdException w:name="Colorful List Accent 3"/><w:lsdException w:name="Colorful Grid Accent 3"/><w:lsdException w:name="Light Shading Accent 4"/><w:lsdException w:name="Light List Accent 4"/><w:lsdException w:name="Light Grid Accent 4"/><w:lsdException w:name="Medium Shading 1 Accent 4"/><w:lsdException w:name="Medium Shading 2 Accent 4"/><w:lsdException w:name="Medium List 1 Accent 4"/><w:lsdException w:name="Medium List 2 Accent 4"/><w:lsdException w:name="Medium Grid 1 Accent 4"/><w:lsdException w:name="Medium Grid 2 Accent 4"/><w:lsdException w:name="Medium Grid 3 Accent 4"/><w:lsdException w:name="Dark List Accent 4"/><w:lsdException w:name="Colorful Shading Accent 4"/><w:lsdException w:name="Colorful List Accent 4"/><w:lsdException w:name="Colorful Grid Accent 4"/><w:lsdException w:name="Light Shading Accent 5"/><w:lsdException w:name="Light List Accent 5"/><w:lsdException w:name="Light Grid Accent 5"/><w:lsdException w:name="Medium Shading 1 Accent 5"/><w:lsdException w:name="Medium Shading 2 Accent 5"/><w:lsdException w:name="Medium List 1 Accent 5"/><w:lsdException w:name="Medium List 2 Accent 5"/><w:lsdException w:name="Medium Grid 1 Accent 5"/><w:lsdException w:name="Medium Grid 2 Accent 5"/><w:lsdException w:name="Medium Grid 3 Accent 5"/><w:lsdException w:name="Dark List Accent 5"/><w:lsdException w:name="Colorful Shading Accent 5"/><w:lsdException w:name="Colorful List Accent 5"/><w:lsdException w:name="Colorful Grid Accent 5"/><w:lsdException w:name="Light Shading Accent 6"/><w:lsdException w:name="Light List Accent 6"/><w:lsdException w:name="Light Grid Accent 6"/><w:lsdException w:name="Medium Shading 1 Accent 6"/><w:lsdException w:name="Medium Shading 2 Accent 6"/><w:lsdException w:name="Medium List 1 Accent 6"/><w:lsdException w:name="Medium List 2 Accent 6"/><w:lsdException w:name="Medium Grid 1 Accent 6"/><w:lsdException w:name="Medium Grid 2 Accent 6"/><w:lsdException w:name="Medium Grid 3 Accent 6"/><w:lsdException w:name="Dark List Accent 6"/><w:lsdException w:name="Colorful Shading Accent 6"/><w:lsdException w:name="Colorful List Accent 6"/><w:lsdException w:name="Colorful Grid Accent 6"/><w:lsdException w:name="Subtle Emphasis"/><w:lsdException w:name="Intense Emphasis"/><w:lsdException w:name="Subtle Reference"/><w:lsdException w:name="Intense Reference"/><w:lsdException w:name="Book Title"/><w:lsdException w:name="TOC Heading"/></w:latentStyles><w:style w:type="paragraph" w:default="on" w:styleId="Normal"><w:name w:val="Normal"/><w:rsid w:val="005D220E"/><w:pPr><w:spacing w:after="160" w:line="259" w:line-rule="auto"/></w:pPr><w:rPr><wx:font wx:val="Calibri"/><w:sz w:val="22"/><w:sz-cs w:val="22"/><w:lang w:val="EN-AU" w:fareast="EN-AU" w:bidi="AR-SA"/></w:rPr></w:style><w:style w:type="character" w:default="on" w:styleId="DefaultParagraphFont"><w:name w:val="Default Paragraph Font"/></w:style><w:style w:type="table" w:default="on" w:styleId="TableNormal"><w:name w:val="Normal Table"/><wx:uiName wx:val="Table Normal"/><w:rPr><wx:font wx:val="Calibri"/><w:lang w:val="EN-AU" w:fareast="EN-AU" w:bidi="AR-SA"/></w:rPr><w:tblPr><w:tblInd w:w="0" w:type="dxa"/><w:tblCellMar><w:top w:w="0" w:type="dxa"/><w:left w:w="108" w:type="dxa"/><w:bottom w:w="0" w:type="dxa"/><w:right w:w="108" w:type="dxa"/></w:tblCellMar></w:tblPr></w:style><w:style w:type="list" w:default="on" w:styleId="NoList"><w:name w:val="No List"/></w:style><w:style w:type="table" w:styleId="TableGrid"><w:name w:val="Table Grid"/><w:basedOn w:val="TableNormal"/><w:rsid w:val="00EB4B91"/><w:rPr><wx:font wx:val="Calibri"/></w:rPr><w:tblPr><w:tblBorders><w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:insideH w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:insideV w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/></w:tblBorders></w:tblPr></w:style></w:styles><w:shapeDefaults><o:shapedefaults v:ext="edit" spidmax="1026"/><o:shapelayout v:ext="edit"><o:idmap v:ext="edit" data="1"/></o:shapelayout></w:shapeDefaults><w:docPr><w:view w:val="print"/><w:zoom w:percent="100"/><w:doNotEmbedSystemFonts/><w:proofState w:spelling="clean" w:grammar="clean"/><w:defaultTabStop w:val="720"/><w:punctuationKerning/><w:characterSpacingControl w:val="DontCompress"/><w:optimizeForBrowser/><w:allowPNG/><w:validateAgainstSchema/><w:saveInvalidXML w:val="off"/><w:ignoreMixedContent w:val="off"/><w:alwaysShowPlaceholderText w:val="off"/><w:compat><w:breakWrappedTables/><w:snapToGridInCell/><w:wrapTextWithPunct/><w:useAsianBreakRules/><w:dontGrowAutofit/></w:compat><wsp:rsids><wsp:rsidRoot wsp:val="00EB4B91"/><wsp:rsid wsp:val="00130727"/><wsp:rsid wsp:val="00241D13"/><wsp:rsid wsp:val="002F1D0D"/><wsp:rsid wsp:val="003E60E2"/><wsp:rsid wsp:val="0059228B"/><wsp:rsid wsp:val="005D220E"/><wsp:rsid wsp:val="007E59DC"/><wsp:rsid wsp:val="00C6145B"/><wsp:rsid wsp:val="00E344C7"/><wsp:rsid wsp:val="00EB4B91"/><wsp:rsid wsp:val="00F85807"/></wsp:rsids></w:docPr><w:body><wx:sect><w:tbl><w:tblPr><w:tblW w:w="0" w:type="auto"/><w:tblBorders><w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:insideH w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:insideV w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/></w:tblBorders><w:tblLook w:val="04A0"/></w:tblPr><w:tblGrid><w:gridCol w:w="3005"/><w:gridCol w:w="3005"/><w:gridCol w:w="3006"/></w:tblGrid><w:tr wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidTr="00241D13"><w:tc><w:tcPr><w:tcW w:w="9016" w:type="dxa"/><w:gridSpan w:val="3"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="007E59DC" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r><w:t>Section Row</w:t></w:r></w:p></w:tc></w:tr><w:tr wsp:rsidR="00241D13" wsp:rsidRPr="00241D13" wsp:rsidTr="00241D13"><w:tc><w:tcPr><w:tcW w:w="3005" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>Header 1</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3005" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>Header 2</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3006" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>Header 3</w:t></w:r></w:p></w:tc></w:tr><w:tr wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidTr="00241D13"><w:tc><w:tcPr><w:tcW w:w="3005" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>Val</w:t></w:r><w:r wsp:rsidR="0059228B"><w:t>1</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3005" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>Val</w:t></w:r><w:r wsp:rsidR="0059228B"><w:t>2</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3006" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="0059228B" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r><w:t>Val3</w:t></w:r></w:p></w:tc></w:tr></w:tbl><w:p wsp:rsidR="00C6145B" wsp:rsidRDefault="00C6145B"/><w:sectPr wsp:rsidR="00C6145B" wsp:rsidSect="005D220E"><w:pgSz w:w="11906" w:h="16838"/><w:pgMar w:top="1440" w:right="1440" w:bottom="1440" w:left="1440" w:header="708" w:footer="708" w:gutter="0"/><w:cols w:space="708"/><w:docGrid w:line-pitch="360"/></w:sectPr></wx:sect></w:body></w:wordDocument>
Which looks like this in document form
Final output:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?mso-application progid="Word.Document"?>
<w:wordDocument xmlns:aml="http://schemas.microsoft.com/aml/2001/core" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex" xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex" xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex" xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex" xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex" xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex" xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex" xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex" xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex" xmlns:cr="http://schemas.microsoft.com/office/comments/2020/reactions" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink" xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:oel="http://schemas.microsoft.com/office/2019/extlst" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.microsoft.com/office/word/2003/wordml" xmlns:wx="http://schemas.microsoft.com/office/word/2003/auxHint" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wsp="http://schemas.microsoft.com/office/word/2003/wordml/sp2" xmlns:sl="http://schemas.microsoft.com/schemaLibrary/2003/core" w:macrosPresent="no" w:embeddedObjPresent="no" w:ocxPresent="no" xml:space="preserve"><w:ignoreSubtree w:val="http://schemas.microsoft.com/office/word/2003/wordml/sp2"/><o:DocumentProperties><o:Author>Thomas Jeremiah</o:Author><o:LastAuthor>Thomas Jeremiah</o:LastAuthor><o:Revision>3</o:Revision><o:TotalTime>7</o:TotalTime><o:Created>2022-05-25T10:28:00Z</o:Created><o:LastSaved>2022-05-25T10:34:00Z</o:LastSaved><o:Pages>1</o:Pages><o:Words>8</o:Words><o:Characters>50</o:Characters><o:Lines>1</o:Lines><o:Paragraphs>1</o:Paragraphs><o:CharactersWithSpaces>57</o:CharactersWithSpaces><o:Version>16</o:Version></o:DocumentProperties><w:fonts><w:defaultFonts w:ascii="Calibri" w:fareast="Calibri" w:h-ansi="Calibri" w:cs="Times New Roman"/><w:font w:name="Times New Roman"><w:panose-1 w:val="02020603050405020304"/><w:charset w:val="00"/><w:family w:val="Roman"/><w:pitch w:val="variable"/><w:sig w:usb-0="E0002EFF" w:usb-1="C000785B" w:usb-2="00000009" w:usb-3="00000000" w:csb-0="000001FF" w:csb-1="00000000"/></w:font><w:font w:name="Cambria Math"><w:panose-1 w:val="02040503050406030204"/><w:charset w:val="00"/><w:family w:val="Roman"/><w:pitch w:val="variable"/><w:sig w:usb-0="00000003" w:usb-1="00000000" w:usb-2="00000000" w:usb-3="00000000" w:csb-0="00000001" w:csb-1="00000000"/></w:font><w:font w:name="Calibri"><w:panose-1 w:val="020F0502020204030204"/><w:charset w:val="00"/><w:family w:val="Swiss"/><w:pitch w:val="variable"/><w:sig w:usb-0="E4002EFF" w:usb-1="C000247B" w:usb-2="00000009" w:usb-3="00000000" w:csb-0="000001FF" w:csb-1="00000000"/></w:font></w:fonts><w:styles><w:versionOfBuiltInStylenames w:val="7"/><w:latentStyles w:defLockedState="off" w:latentStyleCount="376"><w:lsdException w:name="Normal"/><w:lsdException w:name="heading 1"/><w:lsdException w:name="heading 2"/><w:lsdException w:name="heading 3"/><w:lsdException w:name="heading 4"/><w:lsdException w:name="heading 5"/><w:lsdException w:name="heading 6"/><w:lsdException w:name="heading 7"/><w:lsdException w:name="heading 8"/><w:lsdException w:name="heading 9"/><w:lsdException w:name="caption"/><w:lsdException w:name="Title"/><w:lsdException w:name="Subtitle"/><w:lsdException w:name="Strong"/><w:lsdException w:name="Emphasis"/><w:lsdException w:name="Normal Table"/><w:lsdException w:name="Table Simple 1"/><w:lsdException w:name="Table Simple 2"/><w:lsdException w:name="Table Simple 3"/><w:lsdException w:name="Table Classic 1"/><w:lsdException w:name="Table Classic 2"/><w:lsdException w:name="Table Classic 3"/><w:lsdException w:name="Table Classic 4"/><w:lsdException w:name="Table Colorful 1"/><w:lsdException w:name="Table Colorful 2"/><w:lsdException w:name="Table Colorful 3"/><w:lsdException w:name="Table Columns 1"/><w:lsdException w:name="Table Columns 2"/><w:lsdException w:name="Table Columns 3"/><w:lsdException w:name="Table Columns 4"/><w:lsdException w:name="Table Columns 5"/><w:lsdException w:name="Table Grid 1"/><w:lsdException w:name="Table Grid 2"/><w:lsdException w:name="Table Grid 3"/><w:lsdException w:name="Table Grid 4"/><w:lsdException w:name="Table Grid 5"/><w:lsdException w:name="Table Grid 6"/><w:lsdException w:name="Table Grid 7"/><w:lsdException w:name="Table Grid 8"/><w:lsdException w:name="Table List 1"/><w:lsdException w:name="Table List 2"/><w:lsdException w:name="Table List 3"/><w:lsdException w:name="Table List 4"/><w:lsdException w:name="Table List 5"/><w:lsdException w:name="Table List 6"/><w:lsdException w:name="Table List 7"/><w:lsdException w:name="Table List 8"/><w:lsdException w:name="Table 3D effects 1"/><w:lsdException w:name="Table 3D effects 2"/><w:lsdException w:name="Table 3D effects 3"/><w:lsdException w:name="Table Contemporary"/><w:lsdException w:name="Table Elegant"/><w:lsdException w:name="Table Professional"/><w:lsdException w:name="Table Subtle 1"/><w:lsdException w:name="Table Subtle 2"/><w:lsdException w:name="Table Web 1"/><w:lsdException w:name="Table Web 2"/><w:lsdException w:name="Table Web 3"/><w:lsdException w:name="Table Theme"/><w:lsdException w:name="No Spacing"/><w:lsdException w:name="Light Shading"/><w:lsdException w:name="Light List"/><w:lsdException w:name="Light Grid"/><w:lsdException w:name="Medium Shading 1"/><w:lsdException w:name="Medium Shading 2"/><w:lsdException w:name="Medium List 1"/><w:lsdException w:name="Medium List 2"/><w:lsdException w:name="Medium Grid 1"/><w:lsdException w:name="Medium Grid 2"/><w:lsdException w:name="Medium Grid 3"/><w:lsdException w:name="Dark List"/><w:lsdException w:name="Colorful Shading"/><w:lsdException w:name="Colorful List"/><w:lsdException w:name="Colorful Grid"/><w:lsdException w:name="Light Shading Accent 1"/><w:lsdException w:name="Light List Accent 1"/><w:lsdException w:name="Light Grid Accent 1"/><w:lsdException w:name="Medium Shading 1 Accent 1"/><w:lsdException w:name="Medium Shading 2 Accent 1"/><w:lsdException w:name="Medium List 1 Accent 1"/><w:lsdException w:name="List Paragraph"/><w:lsdException w:name="Quote"/><w:lsdException w:name="Intense Quote"/><w:lsdException w:name="Medium List 2 Accent 1"/><w:lsdException w:name="Medium Grid 1 Accent 1"/><w:lsdException w:name="Medium Grid 2 Accent 1"/><w:lsdException w:name="Medium Grid 3 Accent 1"/><w:lsdException w:name="Dark List Accent 1"/><w:lsdException w:name="Colorful Shading Accent 1"/><w:lsdException w:name="Colorful List Accent 1"/><w:lsdException w:name="Colorful Grid Accent 1"/><w:lsdException w:name="Light Shading Accent 2"/><w:lsdException w:name="Light List Accent 2"/><w:lsdException w:name="Light Grid Accent 2"/><w:lsdException w:name="Medium Shading 1 Accent 2"/><w:lsdException w:name="Medium Shading 2 Accent 2"/><w:lsdException w:name="Medium List 1 Accent 2"/><w:lsdException w:name="Medium List 2 Accent 2"/><w:lsdException w:name="Medium Grid 1 Accent 2"/><w:lsdException w:name="Medium Grid 2 Accent 2"/><w:lsdException w:name="Medium Grid 3 Accent 2"/><w:lsdException w:name="Dark List Accent 2"/><w:lsdException w:name="Colorful Shading Accent 2"/><w:lsdException w:name="Colorful List Accent 2"/><w:lsdException w:name="Colorful Grid Accent 2"/><w:lsdException w:name="Light Shading Accent 3"/><w:lsdException w:name="Light List Accent 3"/><w:lsdException w:name="Light Grid Accent 3"/><w:lsdException w:name="Medium Shading 1 Accent 3"/><w:lsdException w:name="Medium Shading 2 Accent 3"/><w:lsdException w:name="Medium List 1 Accent 3"/><w:lsdException w:name="Medium List 2 Accent 3"/><w:lsdException w:name="Medium Grid 1 Accent 3"/><w:lsdException w:name="Medium Grid 2 Accent 3"/><w:lsdException w:name="Medium Grid 3 Accent 3"/><w:lsdException w:name="Dark List Accent 3"/><w:lsdException w:name="Colorful Shading Accent 3"/><w:lsdException w:name="Colorful List Accent 3"/><w:lsdException w:name="Colorful Grid Accent 3"/><w:lsdException w:name="Light Shading Accent 4"/><w:lsdException w:name="Light List Accent 4"/><w:lsdException w:name="Light Grid Accent 4"/><w:lsdException w:name="Medium Shading 1 Accent 4"/><w:lsdException w:name="Medium Shading 2 Accent 4"/><w:lsdException w:name="Medium List 1 Accent 4"/><w:lsdException w:name="Medium List 2 Accent 4"/><w:lsdException w:name="Medium Grid 1 Accent 4"/><w:lsdException w:name="Medium Grid 2 Accent 4"/><w:lsdException w:name="Medium Grid 3 Accent 4"/><w:lsdException w:name="Dark List Accent 4"/><w:lsdException w:name="Colorful Shading Accent 4"/><w:lsdException w:name="Colorful List Accent 4"/><w:lsdException w:name="Colorful Grid Accent 4"/><w:lsdException w:name="Light Shading Accent 5"/><w:lsdException w:name="Light List Accent 5"/><w:lsdException w:name="Light Grid Accent 5"/><w:lsdException w:name="Medium Shading 1 Accent 5"/><w:lsdException w:name="Medium Shading 2 Accent 5"/><w:lsdException w:name="Medium List 1 Accent 5"/><w:lsdException w:name="Medium List 2 Accent 5"/><w:lsdException w:name="Medium Grid 1 Accent 5"/><w:lsdException w:name="Medium Grid 2 Accent 5"/><w:lsdException w:name="Medium Grid 3 Accent 5"/><w:lsdException w:name="Dark List Accent 5"/><w:lsdException w:name="Colorful Shading Accent 5"/><w:lsdException w:name="Colorful List Accent 5"/><w:lsdException w:name="Colorful Grid Accent 5"/><w:lsdException w:name="Light Shading Accent 6"/><w:lsdException w:name="Light List Accent 6"/><w:lsdException w:name="Light Grid Accent 6"/><w:lsdException w:name="Medium Shading 1 Accent 6"/><w:lsdException w:name="Medium Shading 2 Accent 6"/><w:lsdException w:name="Medium List 1 Accent 6"/><w:lsdException w:name="Medium List 2 Accent 6"/><w:lsdException w:name="Medium Grid 1 Accent 6"/><w:lsdException w:name="Medium Grid 2 Accent 6"/><w:lsdException w:name="Medium Grid 3 Accent 6"/><w:lsdException w:name="Dark List Accent 6"/><w:lsdException w:name="Colorful Shading Accent 6"/><w:lsdException w:name="Colorful List Accent 6"/><w:lsdException w:name="Colorful Grid Accent 6"/><w:lsdException w:name="Subtle Emphasis"/><w:lsdException w:name="Intense Emphasis"/><w:lsdException w:name="Subtle Reference"/><w:lsdException w:name="Intense Reference"/><w:lsdException w:name="Book Title"/><w:lsdException w:name="TOC Heading"/></w:latentStyles><w:style w:type="paragraph" w:default="on" w:styleId="Normal"><w:name w:val="Normal"/><w:rsid w:val="005D220E"/><w:pPr><w:spacing w:after="160" w:line="259" w:line-rule="auto"/></w:pPr><w:rPr><wx:font wx:val="Calibri"/><w:sz w:val="22"/><w:sz-cs w:val="22"/><w:lang w:val="EN-AU" w:fareast="EN-AU" w:bidi="AR-SA"/></w:rPr></w:style><w:style w:type="character" w:default="on" w:styleId="DefaultParagraphFont"><w:name w:val="Default Paragraph Font"/></w:style><w:style w:type="table" w:default="on" w:styleId="TableNormal"><w:name w:val="Normal Table"/><wx:uiName wx:val="Table Normal"/><w:rPr><wx:font wx:val="Calibri"/><w:lang w:val="EN-AU" w:fareast="EN-AU" w:bidi="AR-SA"/></w:rPr><w:tblPr><w:tblInd w:w="0" w:type="dxa"/><w:tblCellMar><w:top w:w="0" w:type="dxa"/><w:left w:w="108" w:type="dxa"/><w:bottom w:w="0" w:type="dxa"/><w:right w:w="108" w:type="dxa"/></w:tblCellMar></w:tblPr></w:style><w:style w:type="list" w:default="on" w:styleId="NoList"><w:name w:val="No List"/></w:style><w:style w:type="table" w:styleId="TableGrid"><w:name w:val="Table Grid"/><w:basedOn w:val="TableNormal"/><w:rsid w:val="00EB4B91"/><w:rPr><wx:font wx:val="Calibri"/></w:rPr><w:tblPr><w:tblBorders><w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:insideH w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:insideV w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/></w:tblBorders></w:tblPr></w:style></w:styles><w:shapeDefaults><o:shapedefaults v:ext="edit" spidmax="1026"/><o:shapelayout v:ext="edit"><o:idmap v:ext="edit" data="1"/></o:shapelayout></w:shapeDefaults><w:docPr><w:view w:val="print"/><w:zoom w:percent="100"/><w:doNotEmbedSystemFonts/><w:proofState w:spelling="clean" w:grammar="clean"/><w:defaultTabStop w:val="720"/><w:punctuationKerning/><w:characterSpacingControl w:val="DontCompress"/><w:optimizeForBrowser/><w:allowPNG/><w:validateAgainstSchema/><w:saveInvalidXML w:val="off"/><w:ignoreMixedContent w:val="off"/><w:alwaysShowPlaceholderText w:val="off"/><w:compat><w:breakWrappedTables/><w:snapToGridInCell/><w:wrapTextWithPunct/><w:useAsianBreakRules/><w:dontGrowAutofit/></w:compat><wsp:rsids><wsp:rsidRoot wsp:val="00EB4B91"/><wsp:rsid wsp:val="00130727"/><wsp:rsid wsp:val="00241D13"/><wsp:rsid wsp:val="002F1D0D"/><wsp:rsid wsp:val="003E60E2"/><wsp:rsid wsp:val="0059228B"/><wsp:rsid wsp:val="005D220E"/><wsp:rsid wsp:val="007E59DC"/><wsp:rsid wsp:val="00C6145B"/><wsp:rsid wsp:val="00E344C7"/><wsp:rsid wsp:val="00EB4B91"/><wsp:rsid wsp:val="00F85807"/></wsp:rsids></w:docPr><w:body><wx:sect><w:tbl><w:tblPr><w:tblW w:w="0" w:type="auto"/><w:tblBorders><w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:insideH w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:insideV w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/></w:tblBorders><w:tblLook w:val="04A0"/></w:tblPr><w:tblGrid><w:gridCol w:w="3005"/><w:gridCol w:w="3005"/><w:gridCol w:w="3006"/></w:tblGrid><w:tr wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidTr="00241D13"><w:tc><w:tcPr><w:tcW w:w="9016" w:type="dxa"/><w:gridSpan w:val="3"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="007E59DC" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r><w:t>Thing 1</w:t></w:r></w:p></w:tc></w:tr><w:tr wsp:rsidR="00241D13" wsp:rsidRPr="00241D13" wsp:rsidTr="00241D13"><w:tc><w:tcPr><w:tcW w:w="3005" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>Heading 1</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3005" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>Heading 2</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3006" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>Heading 3</w:t></w:r></w:p></w:tc></w:tr><w:tr wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidTr="00241D13"><w:tc><w:tcPr><w:tcW w:w="3005" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>123</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3005" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>labore et dolore</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3006" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="0059228B" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r><w:t>magna aliqua.</w:t></w:r></w:p></w:tc></w:tr><w:tr wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidTr="00241D13"><w:tc><w:tcPr><w:tcW w:w="3005" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>456</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3005" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>Ut enim ad</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3006" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="0059228B" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r><w:t>minim veniam,</w:t></w:r></w:p></w:tc></w:tr><w:tr wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidTr="00241D13"><w:tc><w:tcPr><w:tcW w:w="3005" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>789</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3005" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>quis nostrud exercitation</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3006" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="0059228B" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r><w:t>ullamco laboris nisi</w:t></w:r></w:p></w:tc></w:tr><w:tr wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidTr="00241D13"><w:tc><w:tcPr><w:tcW w:w="9016" w:type="dxa"/><w:gridSpan w:val="3"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="007E59DC" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r><w:t>Thing 2</w:t></w:r></w:p></w:tc></w:tr><w:tr wsp:rsidR="00241D13" wsp:rsidRPr="00241D13" wsp:rsidTr="00241D13"><w:tc><w:tcPr><w:tcW w:w="3005" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>Heading 1</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3005" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>Heading 2</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3006" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>Heading 3</w:t></w:r></w:p></w:tc></w:tr><w:tr wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidTr="00241D13"><w:tc><w:tcPr><w:tcW w:w="3005" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>ABC</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3005" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>Lorem ipsum</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3006" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="0059228B" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r><w:t>dolor sit amet</w:t></w:r></w:p></w:tc></w:tr><w:tr wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidTr="00241D13"><w:tc><w:tcPr><w:tcW w:w="3005" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>DEF</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3005" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>consectetur adipiscing</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3006" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="0059228B" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r><w:t>elit, sed do</w:t></w:r></w:p></w:tc></w:tr><w:tr wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidTr="00241D13"><w:tc><w:tcPr><w:tcW w:w="3005" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>GHI</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3005" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>eiusmod tempor</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3006" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="0059228B" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r><w:t>incididunt ut</w:t></w:r></w:p></w:tc></w:tr><w:tr wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidTr="00241D13"><w:tc><w:tcPr><w:tcW w:w="9016" w:type="dxa"/><w:gridSpan w:val="3"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="007E59DC" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r><w:t>Thing 3</w:t></w:r></w:p></w:tc></w:tr><w:tr wsp:rsidR="00241D13" wsp:rsidRPr="00241D13" wsp:rsidTr="00241D13"><w:tc><w:tcPr><w:tcW w:w="3005" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>Heading 1</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3005" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>Heading 2</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3006" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>Heading 3</w:t></w:r></w:p></w:tc></w:tr><w:tr wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidTr="00241D13"><w:tc><w:tcPr><w:tcW w:w="3005" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>A1</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3005" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>ut aliquip ex ea</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3006" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="0059228B" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r><w:t>commodo consequat</w:t></w:r></w:p></w:tc></w:tr><w:tr wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidTr="00241D13"><w:tc><w:tcPr><w:tcW w:w="3005" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>B2</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3005" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>Duis aute irure</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3006" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="0059228B" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r><w:t>dolor in reprehenderit</w:t></w:r></w:p></w:tc></w:tr><w:tr wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidTr="00241D13"><w:tc><w:tcPr><w:tcW w:w="3005" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>C3</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3005" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="00EB4B91" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r wsp:rsidRPr="00241D13"><w:t>in voluptate velit</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3006" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p wsp:rsidR="00EB4B91" wsp:rsidRPr="00241D13" wsp:rsidRDefault="0059228B" wsp:rsidP="00241D13"><w:pPr><w:spacing w:after="0" w:line="240" w:line-rule="auto"/></w:pPr><w:r><w:t>esse cillum dolore eu</w:t></w:r></w:p></w:tc></w:tr></w:tbl><w:p wsp:rsidR="00C6145B" wsp:rsidRDefault="00C6145B"/><w:sectPr wsp:rsidR="00C6145B" wsp:rsidSect="005D220E"><w:pgSz w:w="11906" w:h="16838"/><w:pgMar w:top="1440" w:right="1440" w:bottom="1440" w:left="1440" w:header="708" w:footer="708" w:gutter="0"/><w:cols w:space="708"/><w:docGrid w:line-pitch="360"/></w:sectPr></wx:sect></w:body></w:wordDocument>
Which looks like this in document format,
A complex table can be created in this way, depending on how the pieces of XML are recombined.
The possibility of messing up the structure and creating an invalid XML structure is very real however. Before I put this into an sort of production I will be putting in a bunch of string formatting checks where values are being populated in.
All in all, a very inelegant and risky process, but it gives the result I need.
OK, well I think I could almost *certainly* get rid of your loop, there (see if you can do it yourself by fiddling with that XML/XPATH I gave you in a temporary flow), and I might have a sneaky Microsoft way to make that PDF, too. 😉
Ill get back to you once I have played around with you example and the xpath function a bit. From the quick glance I have had, your statement about it being powerful rings very true.
Im looking for a similar solution but im not across xml word docs. Can you please provide some detail how you imported and split apart the commponents of the word xml?
Cheers
I generally make a template in MS Word with all the headers/body/tables/etc. where I want them and populate everything with placeholder text.
Then save it as a .xml file
Open the file with a program that will display the raw HTML (I like notepad++ but anything will work including notepad)
Once you have that, its a matter of finding the placeholder text and splitting the document up into sections.
For example, below is the section for the table in the above example exactly as it is in the document.
"/><w:tblW w:w="0" w:type="auto"/><w:tblLook w:val="04A0" w:firstRow="1" w:lastRow="0" w:firstColumn="1" w:lastColumn="0" w:noHBand="0" w:noVBand="1"/></w:tblPr><w:tblGrid><w:gridCol w:w="3116"/><w:gridCol w:w="3117"/><w:gridCol w:w="3117"/></w:tblGrid><w:tr w:rsidR="006B63C3" w14:paraId="3939B6BE" w14:textId="77777777" w:rsidTr="006B63C3"><w:tc><w:tcPr><w:tcW w:w="3116" w:type="dxa"/></w:tcPr><w:p w14:paraId="7E0F6255" w14:textId="69B3925C" w:rsidR="006B63C3" w:rsidRDefault="006B63C3"><w:r><w:t>TableHeader1</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3117" w:type="dxa"/></w:tcPr><w:p w14:paraId="2F3C4194" w14:textId="258EC1A1" w:rsidR="006B63C3" w:rsidRDefault="006B63C3"><w:r><w:t>TableHeader</w:t></w:r><w:r><w:t>2</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3117" w:type="dxa"/></w:tcPr><w:p w14:paraId="35AC976B" w14:textId="50A1F7F4" w:rsidR="006B63C3" w:rsidRDefault="006B63C3"><w:r><w:t>TableHeader</w:t></w:r><w:r><w:t>3</w:t></w:r></w:p></w:tc></w:tr><w:tr w:rsidR="006B63C3" w14:paraId="4D1E2D0B" w14:textId="77777777" w:rsidTr="006B63C3"><w:tc><w:tcPr><w:tcW w:w="3116" w:type="dxa"/></w:tcPr><w:p w14:paraId="76246CD0" w14:textId="5A3D04F7" w:rsidR="006B63C3" w:rsidRDefault="006B63C3"><w:r><w:t>TableBody1</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3117" w:type="dxa"/></w:tcPr><w:p w14:paraId="6E6F66F0" w14:textId="4845990B" w:rsidR="006B63C3" w:rsidRDefault="006B63C3"><w:r><w:t>TableBody</w:t></w:r><w:r><w:t>2</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3117" w:type="dxa"/></w:tcPr><w:p w14:paraId="42CCFD4C" w14:textId="5D276FF3" w:rsidR="006B63C3" w:rsidRDefault="006B63C3"><w:r><w:t>TableBody</w:t></w:r><w:r><w:t>3</w:t></w:r></w:p></w:tc></w:tr></w:tbl><
You can then pull it apart further to get the sub components, and use them in compose actions in Power Automate.
This is the table headers, with DYNAMIC CONTENT HERE being the place you might put you dynamic header text
in Power Automate.
<w:tblW w:w="0" w:type="auto"/><w:tblLook w:val="04A0" w:firstRow="1" w:lastRow="0" w:firstColumn="1" w:lastColumn="0" w:noHBand="0" w:noVBand="1"/></w:tblPr><w:tblGrid><w:gridCol w:w="3116"/><w:gridCol w:w="3117"/><w:gridCol w:w="3117"/></w:tblGrid><w:tr w:rsidR="006B63C3" w14:paraId="3939B6BE" w14:textId="77777777" w:rsidTr="006B63C3"><w:tc><w:tcPr><w:tcW w:w="3116" w:type="dxa"/></w:tcPr><w:p w14:paraId="7E0F6255" w14:textId="69B3925C" w:rsidR="006B63C3" w:rsidRDefault="006B63C3"><w:r><w:t> DYNAMIC CONTENT HERE </w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3117" w:type="dxa"/></w:tcPr><w:p w14:paraId="2F3C4194" w14:textId="258EC1A1" w:rsidR="006B63C3" w:rsidRDefault="006B63C3"><w:r><w:t> DYNAMIC CONTENT HERE </w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3117" w:type="dxa"/></w:tcPr><w:p w14:paraId="35AC976B" w14:textId="50A1F7F4" w:rsidR="006B63C3" w:rsidRDefault="006B63C3"><w:r><w:t> DYNAMIC CONTENT HERE </w:t></w:r></w:p></w:tc></w:tr><w:tr w:rsidR="006B63C3" w14:paraId="4D1E2D0B" w14:textId="77777777" w:rsidTr="006B63C3"><w:tc><w:tcPr><w:tcW w:w="3116" w:type="dxa"/></w:tcPr><w:p w14:paraId="76246CD0" w14:textId="5A3D04F7" w:rsidR="006B63C3" w:rsidRDefault="006B63C3">
For the repeating sections, isolate the section that is the table row, and use that within an apply to each action.
Populate the cells with your dynamic content, then append to a string variable that contains the rest of the table (in sequential order).
Finally, once you have a all the components populated, you recombine to form the full document, and then use a create file action with the string variable containing the xml as the file content.
The basic flow steps would be:
Initialize the string variable that will hold the xml content, and add the xml file head text.
Initialize a string variable to hold the document table and add the xml that forms the beginning of the table (this would include column headers)
Loop over your table row data, populating the locations in the xml with your dynamic variables, and appending to the doc table variable.
Once the rows are created, close out the table variable
Add the now populated table to the main body of the xml
Add the document closing xml to the main body variable
Add final parts of the xml to reform a complete document xml string
Use a create file action to save the document.
Hello to everyone!
Guys, i see lots of replies with interesting solutions to the topic. But i think that is a bit complicated. Don't you think so?
I'm using a third-party solution to generate documents from Word templates with nested repeating tables. It's Plumsail Documents. The good thing is that has a smart templating engine that works with nested constructions and allows you to operate with the data in different ways, even to create complex documents with arrays of data. First, i recommend you read the article on how to create a document from a Word template. Second, learn the templating syntax, especially about nested constructions. The solution is not for free, but there is a 30-day trial, and no credit card is required. Also, the pricing starts from a budget plan. So you can try it and decide whether it is worth it.
Dear Community Members, We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd. During this period, members will not be able to Kudo, Comment, or Reply to any posts. On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities. What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!
We are excited to announce the Summer of Solutions Challenge! This challenge is kicking off on Monday, June 17th and will run for (4) weeks. The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions to as many questions as you can. Answers can be provided in all the communities. Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”) - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024 Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods. You must enter into each weekly Entry Period separately. How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different. Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers. At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing. Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner. A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random. Individuals will be contacted before the announcement with the opportunity to claim or deny the prize. Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners. Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event. ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE** Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersNumber SolutionsSuper UsersNumber Solutions Deenuji 9 @NathanAlvares24 17 @Anil_g 7 @ManishSolanki 13 @eetuRobo 5 @David_MA 10 @VishnuReddy1997 5 @SpongYe 9JhonatanOB19932 (tie) @Nived_Nambiar 8 @maltie 2 (tie) @PA-Noob 2 (tie) @LukeMcG 2 (tie) @tgut03 2 (tie) Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 2: Community MembersSolutionsSuper UsersSolutionsPower Automate @Deenuji 12@ManishSolanki 19 @Anil_g 10 @NathanAlvares24 17 @VishnuReddy1997 6 @Expiscornovus 10 @Tjan 5 @Nived_Nambiar 10 @eetuRobo 3 @SudeepGhatakNZ 8 Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji32ManishSolanki55VishnuReddy199724NathanAlvares2444Anil_g22SudeepGhatakNZ40eetuRobo18Nived_Nambiar28Tjan8David_MA22 Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji11FLMike31Sayan11ManishSolanki16VishnuReddy199710creativeopinion14Akshansh-Sharma3SudeepGhatakNZ7claudiovc2CFernandes5 misc2Nived_Nambiar5 Usernametwice232rzaneti5 eetuRobo2 Anil_g2 SharonS2
On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners. The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights. Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.
We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for. We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer. Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together. Here's to new beginnings and endless possibilities! If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport. To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages