What is Power Automate?
Formally known as Microsoft Flow, Power Automate is Microsoft's code-less tool designed to automate your business's repetitive and manual tasks. With Power Automate, you can:
- Automate business processes.
- Pass data between nearly every application in the Microsoft Stack.
- Connect to any publicly available API.
- Automatically send reminders and create events for your business.
- And much more!
Using 'Repeating Section Content Controls'
If you want to create a static table in Word and fill it with data, all you have to do is insert a new table in your doc, and add Plain Text Content Controls in each cell:
Then, you can populate those controls from Power Automate.
If you don't know the number of rows ahead of time, you can use the Repeating Section Content Control. Highlight 1 full row of cells, then insert the Repeating Section Content Control:
All that is needed now is to populate this input with some JSON data! Consider the following JSON Array example:
[
{
"Account": "ABC Construction",
"Primary Contact": "Mike Green",
"Annual Revenue": "$10,000.00",
"Status": "Active",
"Owner": "Sarah Blue"
},
{ "Account": "Corey's Company",
"Primary Contact": "Corey Williams",
"Annual Revenue": "$8,500.00",
"Status": "Active",
"Owner": "John Red"
},
Continue Reading on www.beringer.net