Book Image

Workflow Automation with Microsoft Power Automate

By : Aaron Guilmette
Book Image

Workflow Automation with Microsoft Power Automate

By: Aaron Guilmette

Overview of this book

Microsoft Power Automate is a workflow automation solution included in Microsoft 365. This book explores the core concepts of workflow automation, such as working with connectors, triggers, and actions, along with their practical implementation in automating business tasks and simplifying digital processes to boost enterprise productivity.
Table of Contents (22 chapters)
1
Section 1 - What is Power Automate?
3
Section 2 - Basic Flow Concepts
10
Section 3 - Intermediate Flow Concepts
18
Section 4 - Administering the Power Automate Environment

Exploring further options

For long-running approval processes or approval processes involving multiple users and approval steps, you may want to send periodic email reminders to users. One way to do this is by populating variables at each approval stage and checking whether they're complete using a parallel approval branch. You'll do this with five components:

  • The Initialize variable action will be used to configure a variable (such as FirstApprovalDone) that you'll check throughout the approval. The variable will be initialized to false, and then only set to true once that approver approves the request.
  • The Do until control will be used to create a loop that periodically checks to see whether the variable (FirstApprovalDone, in the example) has changed from false to true.
  • The Delay action will allow you to delay the sending of the email by some period of time (to give the approver a chance to respond before getting a notification).
  • The Send an email action that will send...