cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Tjeremiah
Resolver I
Resolver I

Nested repeating tables in word template

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.

Spoiler
Tjeremiah_2-1653392186175.png

 

Tjeremiah_3-1653392215872.png

Tjeremiah_1-1653392134882.png

 

 

 

20 REPLIES 20
eliotcole
Super User
Super User

Hi, @Tjeremiah , 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:

  1. Edit your question with screenshots of your flow (obfuscated where necessary).
  2. Just confirm that JSON (more below)
  3. List or show any errors that the flow throws at you

 

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.

Spoiler

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:

HTML Table

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.

eliotcole
Super User
Super User

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)

 

Tjeremiah_0-1653394434650.pngTjeremiah_1-1653394534813.png

I then switch to array inputs, and use an array variable to populate the repeating table.

Tjeremiah_3-1653394783327.png

 

The solution I 'want' to my problem above is to nest repeating sections, something like

Tjeremiah_4-1653395035657.png

 

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!

Tjeremiah_5-1653395166729.png

 

 


@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! 👍


@Tjeremiah 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,

Tjeremiah_0-1653440051366.png

Looking at the manual input,

Tjeremiah_1-1653440117980.png

I would expect to see a nested input if this were possible, but I do not.

Manually adding an item results in this,

Tjeremiah_2-1653440182013.png

Where if the nesting was recognized, I would expect to see something like this (excuse ms paint editing),

Tjeremiah_3-1653440649791.png

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

Tjeremiah_1-1653443230096.png

 

Tjeremiah_0-1653443209478.png

 

One repeat,

Tjeremiah_2-1653443329032.png

 

Tjeremiah_3-1653443342107.png

 

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, @Tjeremiah, 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:

 

Multiple Select Actions With xpath() Functionality

Here's the flow that you just need to place after your current array is generated.

de-embed inner arrays.jpg

 

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.

cCNST

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.

Select allThings

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:

  1. The value of the key name for each item
  2. The value of the value for each item.

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:

 

Spoiler

Key

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(//*)'
)​

 

Filter nonsense

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')))

 

Select

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:

de-embed inner arrays - input.jpg

It's important that the icon on the side does not look like the following when you place that in:

text view.jpg

 

-----

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:

Tjeremiah_0-1653528687978.png

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.

Tjeremiah_1-1653528777096.png

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.

Tjeremiah_2-1653528893824.png

 

Tjeremiah_3-1653528931911.png

The XML is then closed off, and the value used to create a document. Note the '.doc' format.

Tjeremiah_4-1653529013377.png

A third party connector is then used to convert to PDF

Tjeremiah_5-1653529066390.png

Template:

Spoiler
The raw XML of the 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

Tjeremiah_6-1653529177400.png

 

 Final output:

Spoiler
<?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,

Tjeremiah_7-1653529327392.png

 

 

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.

Tjeremiah_0-1655963365876.png

Then save it as a .xml file

Tjeremiah_1-1655963439571.png

 

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.

Tjeremiah_0-1656375056043.png

 

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)

Tjeremiah_1-1656375192831.png

 

 

Loop over your table row data, populating the locations in the xml with your dynamic variables, and appending to the doc table variable.

Tjeremiah_2-1656375287587.png

 

Once the rows are created, close out the table variable

Tjeremiah_3-1656375347520.png

 

Add the now populated table to the main body of the xml

Tjeremiah_4-1656375424312.png

 

Add the document closing xml to the main body variable

Tjeremiah_5-1656375581517.png

 

Add final parts of the xml to reform a complete document xml string

Tjeremiah_6-1656375662439.png

 

Use a create file action to save the document.

Tjeremiah_7-1656375731979.png

 

 

 

Anonymous
Not applicable

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.

Helpful resources

Announcements

Exclusive LIVE Community Event: Power Apps Copilot Coffee Chat with Copilot Studio Product Team

It's time for the SECOND Power Apps Copilot Coffee Chat featuring the Copilot Studio product team, which will be held LIVE on April 3, 2024 at 9:30 AM Pacific Daylight Time (PDT).     This is an incredible opportunity to connect with members of the Copilot Studio product team and ask them anything about Copilot Studio. We'll share our special guests with you shortly--but we want to encourage to mark your calendars now because you will not want to miss the conversation.   This live event will give you the unique opportunity to learn more about Copilot Studio plans, where we’ll focus, and get insight into upcoming features. We’re looking forward to hearing from the community, so bring your questions!   TO GET ACCESS TO THIS EXCLUSIVE AMA: Kudo this post to reserve your spot! Reserve your spot now by kudoing this post.  Reservations will be prioritized on when your kudo for the post comes through, so don't wait! Click that "kudo button" today.   Invitations will be sent on April 2nd.Users posting Kudos after April 2nd at 9AM PDT may not receive an invitation but will be able to view the session online after conclusion of the event. Give your "kudo" today and mark your calendars for April 3, 2024 at 9:30 AM PDT and join us for an engaging and informative session!

Tuesday Tip: Unlocking Community Achievements and Earning Badges

TUESDAY TIPS are our way of communicating helpful things we've learned or shared that have helped members of the Community. Whether you're just getting started or you're a seasoned pro, Tuesday Tips will help you know where to go, what to look for, and navigate your way through the ever-growing--and ever-changing--world of the Power Platform Community! We cover basics about the Community, provide a few "insider tips" to make your experience even better, and share best practices gleaned from our most active community members and Super Users.   With so many new Community members joining us each week, we'll also review a few of our "best practices" so you know just "how" the Community works, so make sure to watch the News & Announcements each week for the latest and greatest Tuesday Tips!     THIS WEEK'S TIP: Unlocking Achievements and Earning BadgesAcross the Communities, you'll see badges on users profile that recognize and reward their engagement and contributions. These badges each signify a different achievement--and all of those achievements are available to any Community member! If you're a seasoned pro or just getting started, you too can earn badges for the great work you do. Check out some details on Community badges below--and find out more in the detailed link at the end of the article!       A Diverse Range of Badges to Collect The badges you can earn in the Community cover a wide array of activities, including: Kudos Received: Acknowledges the number of times a user’s post has been appreciated with a “Kudo.”Kudos Given: Highlights the user’s generosity in recognizing others’ contributions.Topics Created: Tracks the number of discussions initiated by a user.Solutions Provided: Celebrates the instances where a user’s response is marked as the correct solution.Reply: Counts the number of times a user has engaged with community discussions.Blog Contributor: Honors those who contribute valuable content and are invited to write for the community blog.       A Community Evolving Together Badges are not only a great way to recognize outstanding contributions of our amazing Community members--they are also a way to continue fostering a collaborative and supportive environment. As you continue to share your knowledge and assist each other these badges serve as a visual representation of your valuable contributions.   Find out more about badges in these Community Support pages in each Community: All About Community Badges - Power Apps CommunityAll About Community Badges - Power Automate CommunityAll About Community Badges - Copilot Studio CommunityAll About Community Badges - Power Pages Community

Tuesday Tips: Powering Up Your Community Profile

TUESDAY TIPS are our way of communicating helpful things we've learned or shared that have helped members of the Community. Whether you're just getting started or you're a seasoned pro, Tuesday Tips will help you know where to go, what to look for, and navigate your way through the ever-growing--and ever-changing--world of the Power Platform Community! We cover basics about the Community, provide a few "insider tips" to make your experience even better, and share best practices gleaned from our most active community members and Super Users.   With so many new Community members joining us each week, we'll also review a few of our "best practices" so you know just "how" the Community works, so make sure to watch the News & Announcements each week for the latest and greatest Tuesday Tips!   This Week's Tip: Power Up Your Profile!  🚀 It's where every Community member gets their start, and it's essential that you keep it updated! Your Community User Profile is how you're able to get messages, post solutions, ask questions--and as you rank up, it's where your badges will appear and how you'll be known when you start blogging in the Community Blog. Your Community User Profile is how the Community knows you--so it's essential that it works the way you need it to! From changing your username to updating contact information, this Knowledge Base Article is your best resource for powering up your profile.     Password Puzzles? No Problem! Find out how to sync your Azure AD password with your community account, ensuring a seamless sign-in. No separate passwords to remember! Job Jumps & Email Swaps Changed jobs? Got a new email? Fear not! You'll find out how to link your shiny new email to your existing community account, keeping your contributions and connections intact. Username Uncertainties Unraveled Picking the perfect username is crucial--and sometimes the original choice you signed up with doesn't fit as well as you may have thought. There's a quick way to request an update here--but remember, your username is your community identity, so choose wisely. "Need Admin Approval" Warning Window? If you see this error message while using the community, don't worry. A simple process will help you get where you need to go. If you still need assistance, find out how to contact your Community Support team. Whatever you're looking for, when it comes to your profile, the Community Account Support Knowledge Base article is your treasure trove of tips as you navigate the nuances of your Community Profile. It’s the ultimate resource for keeping your digital identity in tip-top shape while engaging with the Power Platform Community. So, dive in and power up your profile today!  💪🚀   Community Account Support | Power Apps Community Account Support | Power AutomateCommunity Account Support | Copilot Studio  Community Account Support | Power Pages

Super User of the Month | Chris Piasecki

In our 2nd installment of this new ongoing feature in the Community, we're thrilled to announce that Chris Piasecki is our Super User of the Month for March 2024. If you've been in the Community for a while, we're sure you've seen a comment or marked one of Chris' helpful tips as a solution--he's been a Super User for SEVEN consecutive seasons!   Since authoring his first reply in April 2020 to his most recent achievement organizing the Canadian Power Platform Summit this month, Chris has helped countless Community members with his insights and expertise. In addition to being a Super User, Chris is also a User Group leader, Microsoft MVP, and a featured speaker at the Microsoft Power Platform Conference. His contributions to the new SUIT program, along with his joyous personality and willingness to jump in and help so many members has made Chris a fixture in the Power Platform Community.   When Chris isn't authoring solutions or organizing events, he's actively leading Piasecki Consulting, specializing in solution architecture, integration, DevOps, and more--helping clients discover how to strategize and implement Microsoft's technology platforms. We are grateful for Chris' insightful help in the Community and look forward to even more amazing milestones as he continues to assist so many with his great tips, solutions--always with a smile and a great sense of humor.You can find Chris in the Community and on LinkedIn. Thanks for being such a SUPER user, Chris! 💪 🌠  

Find Out What Makes Super Users So Super

We know many of you visit the Power Platform Communities to ask questions and receive answers. But do you know that many of our best answers and solutions come from Community members who are super active, helping anyone who needs a little help getting unstuck with Business Applications products? We call these dedicated Community members Super Users because they are the real heroes in the Community, willing to jump in whenever they can to help! Maybe you've encountered them yourself and they've solved some of your biggest questions. Have you ever wondered, "Why?"We interviewed several of our Super Users to understand what drives them to help in the Community--and discover the difference it has made in their lives as well! Take a look in our gallery today: What Motivates a Super User? - Power Platform Community (microsoft.com)

March User Group Update: New Groups and Upcoming Events!

  Welcome to this month’s celebration of our Community User Groups and exciting User Group events. We’re thrilled to introduce some brand-new user groups that have recently joined our vibrant community. Plus, we’ve got a lineup of engaging events you won’t want to miss. Let’s jump right in: New User Groups   Sacramento Power Platform GroupANZ Power Platform COE User GroupPower Platform MongoliaPower Platform User Group OmanPower Platform User Group Delta StateMid Michigan Power Platform Upcoming Events  DUG4MFG - Quarterly Meetup - Microsoft Demand PlanningDate: 19 Mar 2024 | 10:30 AM to 12:30 PM Central America Standard TimeDescription: Dive into the world of manufacturing with a focus on Demand Planning. Learn from industry experts and share your insights. Dynamics User Group HoustonDate: 07 Mar 2024 | 11:00 AM to 01:00 PM Central America Standard TimeDescription: Houston, get ready for an immersive session on Dynamics 365 and the Power Platform. Connect with fellow professionals and expand your knowledge. Reading Dynamics 365 & Power Platform User Group (Q1)Date: 05 Mar 2024 | 06:00 PM to 09:00 PM GMT Standard TimeDescription: Join our virtual meetup for insightful discussions, demos, and community updates. Let’s kick off Q1 with a bang! Leaders, Create Your Events!  Leaders of existing User Groups, don’t forget to create your events within the Community platform. By doing so, you’ll enable us to share them in future posts and newsletters. Let’s spread the word and make these gatherings even more impactful! Stay tuned for more updates, inspiring stories, and collaborative opportunities from and for our Community User Groups.   P.S. Have an event or success story to share? Reach out to us – we’d love to feature you!

Users online (5,124)