Create PDF document from SharePoint form based on Word template with Power Automate and Plumsail Processes

The PDF file format is one of the most common file formats in use today for exchanging and distributing documents.

From this article, you will learn how to populate a DOCX template with data from two linked SharePoint lists and convert it to PDF with the help of Plumsail Processes in Power Automate (MS Flow). The instructions below will help you automate the process of the generation of different documents like orders, invoices, inquiries, contracts, etc.

By way of example, we will set up a process that creates a signed work order document and saves the result document to SharePoint library.

SharePoint Form

We have already designed a work order form, here it is:

Work Order Form

Work order can consist of one or more assignments, that is why we created two lists:

  • Work Order;

  • Assignments.

‘Work Order’ list stores primary information about customers and persons in charge. The list has the following fields:

  • CustomerName (Lookup field, points to the list of the customers);

  • CustomerMobile (Single line text field);

  • CustomerEmail (Single line text field);

  • CustomerManager (Person or Group field);

  • Signature (Multiline Plain Text field, stores the data of Ink Sketch control).

‘Assignments’ list stores granular tasks of the corresponding Work Order. The list has the following fields:

  • Description (Single line text field);

  • AssignedTo (Person or Group field);

  • DueDate (Date and Time field);

  • Status (Choice field);

  • WorkOrder (Lookup field, points to the ‘Work Order’ list).

To bind ‘Assignments’ list to the work order form, we utilized the List or Library control.

Find more information about the List or Library control and setup instructions in Create forms with related items or documents article.

Also, we added Ink Sketch control to the form to obtain a signature of the customer’s manager and save it to the ‘Signature’ field.

DOCX Template

We are moving on to creating the Plumsail Word DOCX template. You can download our template here.

DOCX template

Plumsail Processes uses a minimal amount of syntax that facilitates the process of preparing a DOCX template.

In brief, everything between curly {{ }} brackets is variables that will be replaced with data from the SharePoint list. For instance, {{CustomerName}} will be replaced with the name: Sophie Meyer.

The list of assignments may have indefinite number of rows. For populating the table, we need to put all assignments into an array. For each entry of the array, a separate row will be created in the resulting document.

To get specific values of items from the array, we add tags to the table with the following structure: {{ArrayName.FieldInternalName}}.

For instance, to get the description of the assignment, we add this tag: {{Assignments.Description}}

Note

If a field value stores an object, use the dot operator to get a property from the object. For instance, to get a display name of a user that is selected in ‘AssignedTo’ field, use this tag: {{Assignments.AssignedTo.DisplayName}}

Also, you can format a tag value. For instance, in our template, we format date tags like this: {{Created}:format(MM.dd.yyyy)}

You can find more about formatters here.

Last but not least, we will display the manager’s signature on the document. The Ink Sketch control picture stores as a base64 string. To insert a base64 string to the document and then display it as a picture, we use this tag: {{Signature}:picture}

You can find more information on how to insert pictures in DOCX templates here.

Process (Plumsail Documents)

Let’s get started on setting up the process.

To create a new process, go to the Processes section in your Plumsail account.

Add process

Click on the ‘Add process’ button.

Create process

Press the ‘Create’ button, and you’ll proceed to the next step – Configure Template:

Fill in ‘Output filename’ and select PDF as the output type.

Configure Template

Press the ‘Save & Next’ button, and you’ll proceed to the final step – Delivery.

Choose ‘SharePoint - Save the result documents to SharePoint library’ from the list of connectors.

Delivery

Specify your SharePoint site URL and press ‘Connect’. Select the library where you want to save the resulting document and press ‘Save & Next’.

Delivery set up

The Process is ready and we move on to creating the flow.

Flow (MS Power Automate)

Go to ‘My flows’ and click ‘+ New’ → ‘Automated-from blank’:

Flow

In the pop-up dialog, in ‘Choose your flow’s trigger’ field, search for SharePoint item and add ‘SharePoint Item - When an item is created’:

trigger

Name the flow and click ‘Create’.

These are the steps that we use in our flow.

Flow steps

Let’s take a closer look at each step.

  1. When an Item is created or modified

The flow starts when an item is created or modified in ‘WorkOrder’ list. You can use any other trigger to start the flow.

When an Item is created or modified

  1. Initialize variable

The Ink Sketch control stores the data in quotation marks. In order to remove them, we add the ‘Initialize variable’ step. Name the variable and set its type to ‘String’. Then, add an expression to the value parameter: replace(triggerBody()[‘Signature’],’”’, ‘’)

Initialize variable

  1. Get Items

Next, we need to get items from the ‘Assignments’ lists.

To obtain items that are related to the current work order only, we specify filtration by WorkOrder in the ‘Filter Query’.

Get Items

  1. Start document generation process

Finally, we set up the step that starts the Plumsail Process. Find the instruction on how to use Plumsail Documents connector in Power Automate here.

In the ‘Template data’ parameter, we bind data to the template in JSON format.

Start document generation process

And now our flow is ready to use!

Conclusion

This is the resulting document generated based on our template with the help of Plumsail Documents and MS Power Automate:

resulting PDF