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

Calling all User Group Leaders and Super Users! Mark Your Calendars for the next Community Ambassador Call on May 9th!

This month's Community Ambassador call is on May 9th at 9a & 3p PDT. Please keep an eye out in your private messages and Teams channels for your invitation. There are lots of exciting updates coming to the Community, and we have some exclusive opportunities to share with you! As always, we'll also review regular updates for User Groups, Super Users, and share general information about what's going on in the Community.     Be sure to register & we hope to see all of you there!

April 2024 Community Newsletter

We're pleased to share the April Community 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 follow the latest News & Announcements 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 PagesWarrenBelzDeenujialexander2523ragavanrajanLaurensMManishSolankiMattJimisonLucas001AmikcapuanodanilostephenrobertOliverRodriguestimlAndrewJManikandanSFubarmmbr1606VishnuReddy1997theMacResolutionsVishalJhaveriVictorIvanidzejsrandhawahagrua33ikExpiscornovusFGuerrero1PowerAddictgulshankhuranaANBExpiscornovusprathyooSpongYeNived_Nambiardeeksha15795apangelesGochixgrantjenkinsvasu24Mfon   LATEST NEWS   Business Applications Launch Event - On Demand In case you missed the Business Applications Launch Event, you can now catch up on all the announcements and watch the entire event on-demand inside Charles Lamanna's latest cloud blog.   This is your one stop shop for all the latest Copilot features across Power Platform and #Dynamics365, including first-hand looks at how companies such as Lenovo, Sonepar, Ford Motor Company, Omnicom and more are using these new capabilities in transformative ways. Click the image below to watch today!   Power Platform Community Conference 2024 is here! It's time to look forward to the next installment of the Power Platform Community Conference, which takes place this year on 18-20th September 2024 at the MGM Grand in Las Vegas!   Come and be inspired by Microsoft senior thought leaders and the engineers behind the #PowerPlatform, with Charles Lamanna, Sangya Singh, Ryan Cunningham, Kim Manis, Nirav Shah, Omar Aftab and Leon Welicki already confirmed to speak. You'll also be able to learn from industry experts and Microsoft MVPs who are dedicated to bridging the gap between humanity and technology. These include the likes of Lisa Crosbie, Victor Dantas, Kristine Kolodziejski, David Yack, Daniel Christian, Miguel Félix, and Mats Necker, with many more to be announced over the coming weeks.   Click here to watch our brand-new sizzle reel for #PPCC24 or click the image below to find out more about registration. See you in Vegas!       Power Up Program Announces New Video-Based Learning Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram. These include a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the image below to find out more!   UPCOMING EVENTS Microsoft Build - Seattle and Online - 21-23rd May 2024 Taking place on 21-23rd May 2024 both online and in Seattle, this is the perfect event to learn more about low code development, creating copilots, cloud platforms, and so much more to help you unleash the power of AI.   There's a serious wealth of talent speaking across the three days, including the likes of Satya Nadella, Amanda K. Silver, Scott Guthrie, Sarah Bird, Charles Lamanna, Miti J., Kevin Scott, Asha Sharma, Rajesh Jha, Arun Ulag, Clay Wesener, and many more.   And don't worry if you can't make it to Seattle, the event will be online and totally free to join. Click the image below to register for #MSBuild today!   European Collab Summit - Germany - 14-16th May 2024 The clock is counting down to the amazing European Collaboration Summit, which takes place in Germany May 14-16, 2024. #CollabSummit2024 is designed to provide cutting-edge insights and best practices into Power Platform, Microsoft 365, Teams, Viva, and so much more. There's a whole host of experts speakers across the three-day event, including the likes of Vesa Juvonen, Laurie Pottmeyer, Dan Holme, Mark Kashman, Dona Sarkar, Gavin Barron, Emily Mancini, Martina Grom, Ahmad Najjar, Liz Sundet, Nikki Chapple, Sara Fennah, Seb Matthews, Tobias Martin, Zoe Wilson, Fabian Williams, and many more.   Click the image below to find out more about #ECS2024 and register today!     Microsoft 365 & Power Platform Conference - Seattle - 3-7th June If you're looking to turbo boost your Power Platform skills this year, why not take a look at everything TechCon365 has to offer at the Seattle Convention Center on June 3-7, 2024.   This amazing 3-day conference (with 2 optional days of workshops) offers over 130 sessions across multiple tracks, alongside 25 workshops presented by Power Platform, Microsoft 365, Microsoft Teams, Viva, Azure, Copilot and AI experts. There's a great array of speakers, including the likes of Nirav Shah, Naomi Moneypenny, Jason Himmelstein, Heather Cook, Karuana Gatimu, Mark Kashman, Michelle Gilbert, Taiki Y., Kristi K., Nate Chamberlain, Julie Koesmarno, Daniel Glenn, Sarah Haase, Marc Windle, Amit Vasu, Joanne C Klein, Agnes Molnar, and many more.   Click the image below for more #Techcon365 intel and register today!     For more events, click the image below to visit the Microsoft Community Days website.      

Tuesday Tip | Update Your Community Profile Today!

It's time for another TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   We're excited to announce that updating your community profile has never been easier! Keeping your profile up to date is essential for staying connected and engaged with the community.   Check out the following Support Articles with these topics: Accessing Your Community ProfileRetrieving Your Profile URLUpdating Your Community Profile Time ZoneChanging Your Community Profile Picture (Avatar)Setting Your Date Display Preferences Click on your community link for more information: Power Apps, Power Automate, Power Pages, Copilot Studio   Thank you for being an active part of our community. Your contributions make a difference! Best Regards, The Community Management Team

Hear what's next for the Power Up Program

Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram, including a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the link below to sign up today! https://aka.ms/PowerUp  

Super User of the Month | Ahmed Salih

We're thrilled to announce that Ahmed Salih is our Super User of the Month for April 2024. Ahmed has been one of our most active Super Users this year--in fact, he kicked off the year in our Community with this great video reminder of why being a Super User has been so important to him!   Ahmed is the Senior Power Platform Architect at Saint Jude's Children's Research Hospital in Memphis. He's been a Super User for two seasons and is also a Microsoft MVP! He's celebrating his 3rd year being active in the Community--and he's received more than 500 kudos while authoring nearly 300 solutions. Ahmed's contributions to the Super User in Training program has been invaluable, with his most recent session with SUIT highlighting an incredible amount of best practices and tips that have helped him achieve his success.   Ahmed's infectious enthusiasm and boundless energy are a key reason why so many Community members appreciate how he brings his personality--and expertise--to every interaction. With all the solutions he provides, his willingness to help the Community learn more about Power Platform, and his sheer joy in life, we are pleased to celebrate Ahmed and all his contributions! You can find him in the Community and on LinkedIn. Congratulations, Ahmed--thank you for being a SUPER user!

Tuesday Tip: Getting Started with Private Messages & Macros

Welcome to TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   As our community family expands each week, we revisit our essential tools, tips, and tricks to ensure you’re well-versed in the community’s pulse. Keep an eye on the News & Announcements for your weekly Tuesday Tips—you never know what you may learn!   This Week's Tip: Private Messaging & Macros in Power Apps Community   Do you want to enhance your communication in the Community and streamline your interactions? One of the best ways to do this is to ensure you are using Private Messaging--and the ever-handy macros that are available to you as a Community member!   Our Knowledge Base article about private messaging and macros is the best place to find out more. Check it out today and discover some key tips and tricks when it comes to messages and macros:   Private Messaging: Learn how to enable private messages in your community profile and ensure you’re connected with other community membersMacros Explained: Discover the convenience of macros—prewritten text snippets that save time when posting in forums or sending private messagesCreating Macros: Follow simple steps to create your own macros for efficient communication within the Power Apps CommunityUsage Guide: Understand how to apply macros in posts and private messages, enhancing your interaction with the Community For detailed instructions and more information, visit the full page in your community today:Power Apps: Enabling Private Messaging & How to Use Macros (Power Apps)Power Automate: Enabling Private Messaging & How to Use Macros (Power Automate)  Copilot Studio: Enabling Private Messaging &How to Use Macros (Copilot Studio) Power Pages: Enabling Private Messaging & How to Use Macros (Power Pages)

Users online (4,000)