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

Tuesday Tip: Subscriptions & Notifications

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: All About Subscriptions & Notifications We don't want you to a miss a thing in the Community! The best way to make sure you know what's going on in the News & Announcements, to blogs you follow, or forums and galleries you're interested in is to subscribe! These subscriptions ensure you receive automated messages about the most recent posts and replies. Even better, there are multiple ways you can subscribe to content and boards in the community! (Please note: if you have created an AAD (Azure Active Directory) account you won't be able to receive e-mail notifications.)   Subscribing to a Category  When you're looking at the entire category, select from the Options drop down and choose Subscribe.     You can then choose to Subscribe to all of the boards or select only the boards you want to receive notifications. When you're satisfied with your choices, click Save.     Subscribing to a Topic You can also subscribe to a single topic by clicking Subscribe from the Options drop down menu, while you are viewing the topic or in the General board overview, respectively.     Subscribing to a Label Find the labels at the bottom left of a post.From a particular post with a label, click on the label to filter by that label. This opens a window containing a list of posts with the label you have selected. Click Subscribe.     Note: You can only subscribe to a label at the board level. If you subscribe to a label named 'Copilot' at board #1, it will not automatically subscribe you to an identically named label at board #2. You will have to subscribe twice, once at each board.   Bookmarks Just like you can subscribe to topics and categories, you can also bookmark topics and boards from the same menus! Simply go to the Topic Options drop down menu to bookmark a topic or the Options drop down to bookmark a board. The difference between subscribing and bookmarking is that subscriptions provide you with notifications, whereas bookmarks provide you a static way of easily accessing your favorite boards from the My subscriptions area.   Managing & Viewing Your Subscriptions & Bookmarks To manage your subscriptions, click on your avatar and select My subscriptions from the drop-down menu.     From the Subscriptions & Notifications tab, you can manage your subscriptions, including your e-mail subscription options, your bookmarks, your notification settings, and your email notification format.     You can see a list of all your subscriptions and bookmarks and choose which ones to delete, either individually or in bulk, by checking multiple boxes.     A Note on Following Friends on Mobile Adding someone as a friend or selecting Follow in the mobile view does not allow you to subscribe to their activity feed. You will merely be able to see your friends’ biography, other personal information, or online status, and send messages more quickly by choosing who to send the message to from a list, as opposed to having to search by username.

Monthly Community User Group Update | April 2024

The monthly Community User Group Update is your resource for discovering User Group meetings and events happening around the world (and virtually), welcoming new User Groups to our Community, and more! Our amazing Community User Groups are an important part of the Power Platform Community, with more than 700 Community User Groups worldwide, we know they're a great way to engage personally, while giving our members a place to learn and grow together.   This month, we welcome 3 new User Groups in India, Wales, and Germany, and feature 8 User Group Events across Power Platform and Dynamics 365. Find out more below. New Power Platform User Groups   Power Platform Innovators (India) About: Our aim is to foster a collaborative environment where we can share upcoming Power Platform events, best practices, and valuable content related to Power Platform. Whether you’re a seasoned expert or a newcomer looking to learn, this group is for you. Let’s empower each other to achieve more with Power Platform. Join us in shaping the future of digital transformation!   Power Platform User Group (Wales) About: A Power Platform User Group in Wales (predominantly based in Cardiff but will look to hold sessions around Wales) to establish a community to share learnings and experience in all parts of the platform.   Power Platform User Group (Hannover) About: This group is for anyone who works with the services of Microsoft Power Platform or wants to learn more about it and no-code/low-code. And, of course, Microsoft Copilot application in the Power Platform.   New Dynamics365 User Groups   Ellucian CRM Recruit UK (United Kingdom) About: A group for United Kingdom universities using Ellucian CRM Recruit to manage their admissions process, to share good practice and resolve issues.    Business Central Mexico (Mexico City) About:  A place to find documentation, learning resources, and events focused on user needs in Mexico. We meet to discuss and answer questions about the current features in the standard localization that Microsoft provides, and what you only find in third-party locations. In addition, we focus on what's planned for new standard versions, recent legislation requirements, and more. Let's work together to drive request votes for Microsoft for features that aren't currently found—but are indispensable.   Dynamics 365 F&O User Group (Dublin) About: The Dynamics 365 F&O User Group - Ireland Chapter meets up in person at least twice yearly in One Microsoft Place Dublin for users to have the opportunity to have conversations on mutual topics, find out what’s new and on the Dynamics 365 FinOps Product Roadmap, get insights from customer and partner experiences, and access to Microsoft subject matter expertise.  Upcoming Power Platform Events    PAK Time (Power Apps Kwentuhan) 2024 #6 (Phillipines, Online) This is a continuation session of Custom API. Sir Jun Miano will be sharing firsthand experience on setting up custom API and best practices. (April 6, 2024)       Power Apps: Creating business applications rapidly (Sydney) At this event, learn how to choose the right app on Power Platform, creating a business application in an hour, and tips for using Copilot AI. While we recommend attending all 6 events in the series, each session is independent of one another, and you can join the topics of your interest. Think of it as a “Hop On, Hop Off” bus! Participation is free, but you need a personal computer (laptop) and we provide the rest. We look forward to seeing you there! (April 11, 2024)     April 2024 Cleveland Power Platform User Group (Independence, Ohio) Kickoff the meeting with networking, and then our speaker will share how to create responsive and intuitive Canvas Apps using features like Variables, Search and Filtering. And how PowerFx rich functions and expressions makes configuring those functionalities easier. Bring ideas to discuss and engage with other community members! (April 16, 2024)     Dynamics 365 and Power Platform 2024 Wave 1 Release (NYC, Online) This session features Aric Levin, Microsoft Business Applications MVP and Technical Architect at Avanade and Mihir Shah, Global CoC Leader of Microsoft Managed Services at IBM. We will cover some of the new features and enhancements related to the Power Platform, Dataverse, Maker Portal, Unified Interface and the Microsoft First Party Apps (Microsoft Dynamics 365) that were announced in the Microsoft Dynamics 365 and Power Platform 2024 Release Wave 1 Plan. (April 17, 2024)     Let’s Explore Copilot Studio Series: Bot Skills to Extend Your Copilots (Makati National Capital Reg... Join us for the second installment of our Let's Explore Copilot Studio Series, focusing on Bot Skills. Learn how to enhance your copilot's abilities to automate tasks within specific topics, from booking appointments to sending emails and managing tasks. Discover the power of Skills in expanding conversational capabilities. (April 30, 2024)   Upcoming Dynamics365 Events    Leveraging Customer Managed Keys (CMK) in Dynamics 365 (Noida, Uttar Pradesh, Online) This month's featured topic: Leveraging Customer Managed Keys (CMK) in Dynamics 365, with special guest Nitin Jain from Microsoft. We are excited and thankful to him for doing this session. Join us for this online session, which should be helpful to all Dynamics 365 developers, Technical Architects and Enterprise architects who are implementing Dynamics 365 and want to have more control on the security of their data over Microsoft Managed Keys. (April 11, 2024)       Stockholm D365 User Group April Meeting (Stockholm) This is a Swedish user group for D365 Finance and Operations, AX2012, CRM, CE, Project Operations, and Power BI.  (April 17, 2024)         Transportation Management in D365 F&SCM Q&A Session (Toronto, Online) Calling all Toronto UG members and beyond! Join us for an engaging and informative one-hour Q&A session, exclusively focused on Transportation Management System (TMS) within Dynamics 365 F&SCM. Whether you’re a seasoned professional or just curious about TMS, this event is for you. Bring your questions! (April 26, 2024)   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. Just leave a comment or send a PM here in the Community!

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

We have closed kudos on this post at this time. Thank you to everyone who kudo'ed their RSVP--your invitations are coming soon!  Miss the window to RSVP? Don't worry--you can catch the recording of the meeting this week in the Community.  Details coming soon!   *****   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: Blogging in the Community is a Great Way to Start

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 Topic: Blogging in the Community Are you new to our Communities and feel like you may know a few things to share, but you're not quite ready to start answering questions in the forums? A great place to start is the Community blog! Whether you've been using Power Platform for awhile, or you're new to the low-code revolution, the Community blog is a place for anyone who can write, has some great insight to share, and is willing to commit to posting regularly! In other words, we want YOU to join the Community blog.    Why should you consider becoming a blog author? Here are just a few great reasons. 🎉   Learn from Each Other: Our community is like a bustling marketplace of ideas. By sharing your experiences and insights, you contribute to a dynamic ecosystem where makers learn from one another. Your unique perspective matters! Collaborate and Innovate: Imagine a virtual brainstorming session where minds collide, ideas spark, and solutions emerge. That’s what our community blog offers—a platform for collaboration and innovation. Together, we can build something extraordinary. Showcase the Power of Low-Code: You know that feeling when you discover a hidden gem? By writing about your experience with your favorite Power Platform tool, you’re shining a spotlight on its capabilities and real-world applications. It’s like saying, “Hey world, check out this amazing tool!” Earn Trust and Credibility: When you share valuable information, you become a trusted resource. Your fellow community members rely on your tips, tricks, and know-how. It’s like being the go-to friend who always has the best recommendations. Empower Others: By contributing to our community blog, you empower others to level up their skills. Whether it’s a nifty workaround, a time-saving hack, or an aha moment, your words have impact. So grab your keyboard, brew your favorite beverage, and start writing! Your insights matter and your voice counts! With every blog shared in the Community, we all do a better job of tackling complex challenges with gusto. 🚀 Welcome aboard, future blog author! ✍️💻🌟 Get started blogging across the Power Platform Communities today! Just follow one of the links below to begin your blogging adventure.   Power Apps: https://powerusers.microsoft.com/t5/Power-Apps-Community-Blog/bg-p/PowerAppsBlog Power Automate: https://powerusers.microsoft.com/t5/Power-Automate-Community-Blog/bg-p/MPABlog Copilot Studio: https://powerusers.microsoft.com/t5/Copilot-Studio-Community-Blog/bg-p/PVACommunityBlog Power Pages: https://powerusers.microsoft.com/t5/Power-Pages-Community-Blog/bg-p/mpp_blog   When you follow the link, look for the Message Admins button like this on the page's right rail, and let us know you're interested. We can't wait to connect with you and help you get started. Thanks for being part of our incredible community--and thanks for becoming part of the community blog!

Launch Event Registration: Redefine What's Possible Using AI

  Join Microsoft product leaders and engineers for an in-depth look at the latest features in Microsoft Dynamics 365 and Microsoft Power Platform. Learn how advances in AI and Microsoft Copilot can help you connect teams, processes, and data, and respond to changing business needs with greater agility. We’ll share insights and demonstrate how 2024 release wave 1 updates and advancements will help you:   Streamline business processes, automate repetitive tasks, and unlock creativity using the power of Copilot and role-specific insights and actions. Unify customer data to optimize customer journeys with generative AI and foster collaboration between sales and marketing teams. Strengthen governance with upgraded tools and features. Accelerate low-code development  using natural language and streamlined tools. Plus, you can get answers to your questions during our live Q&A chat! Don't wait--register today by clicking the image below!      

March 2024 Newsletter

Welcome to our March Newsletter, where we highlight the latest news, product releases, upcoming events, and the amazing work of our outstanding Community members. If you're new to the Community, please make sure to subscribe to News & Announcements in your community and check out the Community on LinkedIn as well! It's the best way to stay up-to-date with all the news from across Microsoft Power Platform and beyond.    COMMUNITY HIGHLIGHTS Check out the most active community members of the last month! These hardworking members are posting regularly, answering questions, kudos, and providing top solutions in their communities. We are so thankful for each of you--keep up the great work! If you hope to see your name here next month, follow these awesome community members to see what they do!   Power AppsPower AutomateCopilot StudioPower PagesWarrenBelzAgniusMattJimisonragavanrajanLaurensMfernandosilvafernandosilvaLucas001Rajkumar_404wskinnermctccpaytonHaressh2728timlNived_NambiarcapuanodaniloMariamPaulachanJmanriqueriosUshaJyothi20inzil2kvip01PstorkVictorIvanidzejsrandhawarenatoromaodpoggemannmichael0808deeksha15795prufachEddieEgrantjenkinsExpiscornovusdeeksha15795SpongYeRhiassuringdeeksha15795apangelesM_Ali_SZ365ManishSolankiSanju1jamesmuller   LATEST NEWS Business Applications Launch Event - Virtual - 10th April 2024 Registration is still open for the Microsoft Business Applications Launch event which kicks off at 9am PST on Wednesday 10th April 2024. Join Microsoft product leaders and engineers for an in-depth look at the latest news and AI capabilities in Power Platform and Dynamics 365, featuring the likes of Charles Lamanna, Sangya Singh, Julie Strauss, Donald Kossmann, Lori Lamkin, Georg Glantschnig, Mala Anand, Jeff Comstock, and Mike Morton.   If you'd like to learn about the latest advances in AI and how #MicrosoftCopilot can help you streamline your processes, click the image below to register today!     Power Apps LIVE Copilot Coffee Chat - 9.30am 3rd April 2024 Be sure to check out our exclusive LIVE community event, "Power Apps Copilot Coffee Chat with Copilot Studio Product Team", which kicks off next week.   This is a unique opportunity to connect and converse with members of the Copilot Studio product team to learn more about their plans and insights into upcoming features. Click the image below to learn how to gain access!     Get Started with AI Prompts - Friday 29th March 2024 Join April Dunnam, Gomolemo Mohapi, and the team as they launch a new multi-week video series on our YouTube channelto show how you can power up your AI experience with Power Automate.   Here you'll discover how to create custom AI Prompts to use in your Power Platform solutions, with the premier available to view at 9am on Friday 29th March 2024. Click the image below to get notified when the video goes live!     UPCOMING EVENTS North American Collab Summit - Texas - 9-11th April 2024 It's not long now until the #NACollabSummit, which takes place at the Irving Convention Center in Texas on April 11-13th 2024. This amazing event will see business leaders, IT pros, developers, and end users, come together to learn how the latest Microsoft technologies can power teamwork, engagement, communication, and organizational effectiveness.   This is a great opportunity to learn from some amazing speakers and shining lights across #WomenInTech, with guests including the likes of Liz Sundet, Cathy Dew, Rebecka Isaksson, Isabelle Van Campenhoudt, Theresa Lubelski, Shari L. Oswald, Emily Mancini,Katerina Chernevskaya, Sharon Weaver, Sandy Ussia, Geetha Sivasailam, and many more.   Click the image below to find out more about this great event!   Dynamic Minds Conference - Slovenia - 27-29th May 2024 The DynamicsMinds Conference is almost upon us, taking place on 27-29th May at the Grand Hotel Bernardin in Slovenia. With over 150 sessions and 170 speakers, there's sure to be something for everyone across this awesome three-day event. There's an amazing array of speakers, including Dona Sarkar, Georg Glantschnig, Elena Baeva, Chris Huntingford, Lisa Crosbie, Ilya Fainberg, Keith Whatling, Malin Martnes, Mark Smith, Rachel Profitt, Renato Fajdiga, Shannon Mullins, Steve Mordue, Tricia Sinclair, Tommy Skaue, Victor Dantas, Sara Lagerquist, and many more.   Click the image below to meet more of the #MicrosoftCommunity in Slovenia to learn, mingle, and share your amazing ideas!     European Power Platform Conference - Belgium - 11-13th June It's time to make a note in your diary for the third European Power Platform Conference, which takes place at the SQUARE-BRUSSELS CONVENTION CENTRE on 11-13th June in Belgium.   This event brings together the Microsoft Community from across the world for three invaluable days of in-person learning, connection, and inspiration. There's a wide array of expert speakers across #MPPC24, including the likes of Aaron Rendell, Amira Beldjilali, Andrew Bibby, Angeliki Patsiavou, Ben den Blanken, Cathrine Bruvold, Charles Sexton, Chloé Moreau, Chris Huntingford, Claire Edgson, Damien Bird, Emma-Claire Shaw, Gilles Pommier, Guro Faller, Henry Jammes, Hugo Bernier, Ilya Fainberg, Karen Maes, Laura Graham-Brown, Lilian Stenholt Thomsen, Lindsay Shelton, Lisa Crosbie, Mats Necker, Negar Shahbaz, Nick Doelman, Paulien Buskens, Sara Lagerquist, Tricia Sinclair, Ulrikke Akerbæk, and many more.   Click the image below to find out more and register for what is sure to be a jam-packed event in beautiful Brussels!     For more events, click the image below to visit the Community Days website.   LATEST COMMUNITY BLOG ARTICLES Power Apps Community Blog Power Automate Community Blog Copilot Studio Community Blog Power Pages Community Blog Check out 'Using the Community' for more helpful tips and information: Power Apps, Power Automate, Copilot Studio, Power Pages

Users online (7,675)