Multiple Conditions in Power Automate

When you create flows in Power Automate for one of my clients, many processes require decisions based on multiple conditions. For example, you might want to send an email only if a document is approved and its value exceeds $ 50,000 or trigger a different action if an item’s status is either “Pending” or “In Progress.”

In this Power Automate tutorial, we’ll look at the different ways to handle multiple conditions inside your flows:

  • How to use AND / OR conditions in a single Condition control
  • How to nest multiple Condition controls
  • When to use a Switch control instead of multiple Conditions
  • How to use the Filter array to apply conditions on an array

Power Automate Multiple Conditions

In real life, we don’t always make decisions based on just one thing. The same applies in Power Automate.

We use multiple conditions when:

  • We want to check more than one rule before doing something.
  • For example: Approve leave only if it is “Sick Leave” and the days are less than 3.
  • It helps us make better and smarter decisions in the flow.
  • It saves time by avoiding extra steps.
  • It keeps the flow clean and easy to manage.

By using multiple conditions, we ensure that the flow runs only when all the required conditions are true, or runs in different ways based on the different conditions.

Using multiple conditions in Power Automate allows us to:

  • Control the flow based on various values.
  • Combine AND / OR logic to handle complex business scenarios.
  • Make decisions dynamically based on multiple input values (e.g., leave type and number of days requested).
  • Reduce the number of condition blocks needed by combining logic efficiently.

Whether you’re automating approvals, filtering SharePoint data, or handling multiple conditions properly, it makes our flow easier to manage.

Method 1: Power Automate Multiple Conditions in Same Condition Control

Imagine you’re managing an Employee Leave request in a SharePoint list named “Leave Requests“, which stores employee leave applications.

power automate if expression multiple conditions

Now, let’s say you want to automate the approval process for Sick Leave requests. The business rule is simple: If the Leave Type is “Sick Leave” and the number of Days Requested is two or less, the request should be automatically approved. However, if it exceeds 2 days, then it needs approval.

Now follow the steps below:

  1. Create an automated cloud flow. Give the flow a name and select the trigger ‘When an item is created’. Also, provide the Site Address and List Name.
power automate multiple if statements
  1. Then add a condition action to check the leave Type is “Sick Leave” and the number of Days Requested is two or less. To do this, add the below expression in the condition action.
@{triggerBody()?['LeaveType/Value']} is equal to Sick Leave
@{triggerBody()?['LeaveDays']} is less or equal to 2
power automate multiple condition

This checks if the Leave Type is Sick Leave and the number of days is less than or equal to 2.

  1. In the True section, click on Add an action. Search for Update item and select it. Provide the following parameters:
    • Site Address: Your SharePoint site
    • List Name: Leave Requests
    • Id: ID (from dynamic content)
    • Status: Set to Auto Approved
power automate condition multiple values
  1. After the Update item action, click on Add an action. Select Send an email (V2) from Outlook. Add required field:
    • To: Requester Email (from dynamic content)
    • Subject: Leave Approved
    • Body:
Hi @{triggerBody()?['EmployeeName/DisplayName']},
Your Sick Leave request has been approved automatically as it is within 2 days.
Regards,
HR Team
power automate if multiple conditions

Then, in the false section, you can add Start and wait for an approval action.

  1. Click Save in the top-right corner. Go to your SharePoint list and create a test item.
power automate if expression multiple condition

Wait a few seconds and check if the status is updated to ‘Approved’, and you will receive an approval email.

power automate condition expression result false

IF you want more about the condition action, check out IF Expression in Power Automate.

This is how you can use multiple conditions in a single Condition control to process leave requests in Power Automate automatically.

Use this method when you want to check two or more simple conditions together in a single step. It’s best for straightforward AND/OR logic without the need for complex branching.

Method 2: Nested Condition Controls in Power Automate

Imagine you’re managing an onboarding system in a SharePoint list named “New Employees”, which stores new hire information.

How to use Nested Conditions in Power Automate

Now, let’s say you want to assign roles to new employees based on two conditions:

  • If the Department is “HR”, then:
    • If the employee has five or more years of experience, assign them as “Senior HR Manager.
    • Otherwise, assign them as “HR Executive”
  • If the Department is not HR, no action is needed.

Follow the steps below:

  1. Create an automated cloud flow. Give the flow a name and select the trigger “When an item is created“. Provide the Site Address and List Name (e.g., New Employees).
power automate condition examples
  1. Add the first Condition to check the Department. In the condition, set:
@{triggerBody()?['Department/Value']} is equal to HR

This checks whether the employee is part of the HR department.

power automate condition contains
  1. Click Add an action inside the “True” section. Add another Condition control. In the new condition, set:
@{triggerBody()?['EmployeeExperience']} is greater than or equal to 5

This checks whether the employee has at least 5 years of experience.

nested condition controls in power automate examples
  1. In the “True” branch of the second condition. Add an Update item action. Provide the following parameters:
    • Site Address: Your SharePoint site
    • List Name: New Employees
    • Id: ID (from dynamic content)
    • Role: Set to Senior HR Manager
  1. In the “False” branch of the second condition. Add an Update item action. Provide the following parameters:
    • Site Address: Your SharePoint site
    • List Name: New Employees
    • Id: ID (from dynamic content)
    • Role: Set to Senior HR Manager
Nested Condition Controls in Power Automate

You can leave it empty if no action is needed for non-HR departments. Alternatively, you may add logging, notification, or assignment to other departments as needed.

  1. Click Save in the top-right corner. Go to your SharePoint list and create a test item.
multiple conditions in power automate

After the flow runs, the Role should be updated to Senior HR Manager.

power automate if statement multiple conditions

This is how you can use nested condition controls in Power Automate.

Use this method when your decision-making process requires multiple steps, where one condition depends on the outcome of another. It’s best suited when you need to handle layered logic, where the second condition is only relevant if the first one is true.

Method 3: Switch Control for Multiple Cases in Power Automate

Let’s say you manage a SharePoint list named “Support Tickets” that collects issue reports from end users. The list includes:

  • Ticket ID: (Single line of text)
  • Client Name: (Single line of text)
  • Client Email: (Single line of text)
  • Issue Description: (Multiple lines of text)
  • Priority: (Choice) Low, Medium, High, Critical
  • Status: (Choice) Open, In Progress, Closed, Resolved
  • Assigned To: (Person or Group)
power automate switch multiple values

Now you want to automatically assign the ticket to the correct person based on its priority:

  • Low: Assign to Intern (Johanna Lorenz)
  • Medium: Assign to Support Agent (Joni Sherman)
  • High: Assign to Senior Engineer (Miriam Graham)
  • Critical: Assign to Escalation Manager (Lidia Holloway)

Follow the steps below to use a Switch control:

  1. Go to Power Automate. Click Create from the left navigation. Select Automated cloud flow. Enter a name like Route Support Ticket by Priority. Choose the trigger: When an item is created. Click on Create. In the Site Address, select your SharePoint site. In List Name, select Support Tickets.
  2. Click on + New Step. Search for Switch, and add the Switch control. In the On field, select the dynamic content Priority.
power automate switch case multiple values

This means the flow will switch based on the value of the “Priority” field in the SharePoint item.

You will now add a case for each possible value in the Priority column.

  1. Click + Add a case and set it to Low. Inside this case, click Add an action. Select Update item. Provide the following parameters:
    • Site Address: Your SharePoint site
    • List Name: Support Tickets
    • Id: ID From dynamic content
    • Assigned To: Johanna Lorenz
power automate switch multiple conditions
  1. Add a new case: Medium. Add Update item. Set Assigned To: Joni Sherman.
  2. Add a new case: High. Add Update item. Set Assigned To: Miriam Graham.
  3. Add a new case: Critical. Add Update item. Set Assigned To: Lidia Holloway.
power automate switch vs condition
  1. Click Save. Go to your SharePoint list and create a test item with.
Switch Control for Multiple Cases in Power Automate

After the flow runs, the ticket should be assigned to a Senior Engineer (Miriam Graham).

Power Automate Switch Control for Multiple Cases

This is how you can use a Switch control in Power Automate to handle multiple values from a single field.

Use this method when you have a field that contains specific known values and you want to run different actions for each one.

Method 4: Power Automate Filter Array Multiple Conditions

You have a SharePoint list named Customer Requests, with the following columns:

  • Request ID (Single line of text)
  • Request Title (Single line of text)
  • Customer Name (Single line of text)
  • Request Details (Multiple lines of text)
  • Priority (Choice): Low, Medium, High, Urgent
  • Assigned To (Person or Group)
  • Status (Choice): New, In Progress, Resolved
filter array multiple conditions power automate

Your goal is to identify all requests that are:

  • Marked as Urgent
  • Not yet assigned to anyone

You would like to send this filtered list to the manager daily.

Follow the steps below to use Filter Array with multiple conditions:

  1. Go to Power Automate. Click Create > Scheduled cloud flow. Name it Urgent Unassigned Requests Summary. Set the schedule to run daily (e.g., 9:00 AM). Click Create.
power automate filter query multiple conditions
  1. Click on + New Step. Search for Get items (SharePoint) and select it. Provide the below value:
    • Site Address: Your SharePoint site
    • List Name: Customer Requests
power automate get items filter query multiple conditions
  1. Click + New Step. Search for Filter array and add it. In the From field, select a value from the Get items output. Click Edit in advanced mode. Paste the following expression:
@and(equals(item()?['Priority/Value'], 'Urgent'), empty(item()?['AssignedTo/Claims']))
filter array power automate multiple conditions

This filters the array for items where Priority is “Urgent” and Assigned To is blank.

Then, you can add a ‘Create HTML table‘ action. Next, add Send an email (V2). Every day manager will receive this type of email.

Using Filter Array Multiple Conditions

Use the Filter array when working with a collection of items (such as from SharePoint or Excel), and you need to apply multiple filters simultaneously without using loops or complicated branching.

In this Power Automate tutorial, we explored different ways to apply multiple conditions in your flows:

  • We learned how to use AND / OR conditions in a single Condition control to check multiple rules in one step.
  • We used Nested Condition controls when decisions needed to be made step by step.
  • We used a Switch control to handle multiple possible values in a cleaner way than stacking multiple conditions.
  • Finally, we used the Filter array action to filter collections like SharePoint list items based on multiple criteria.

You may like the following tutorials:

Leave a Comment

Power Apps functions free pdf

30 Power Apps Functions

This free guide walks you through the 30 most-used Power Apps functions with real business examples, exact syntax, and results you can see.

Live Webinar

Quiz App Using SharePoint Framework (SPFx)

Learn to built a complete Quiz Management solution that enables admins to create and manage quizzes, categories, questions, and settings with an easy automated setup process in SharePoint. It also includes an interactive quiz experience for users and a powerful dashboard to track participation, analyze results, and view detailed performance reports with charts and answer insights.

📅 2nd June 2026 – 10:00 AM EST | 7:30 PM IST

Download User registration canvas app

DOWNLOAD USER REGISTRATION POWER APPS CANVAS APP

Download a fully functional Power Apps Canvas App (with Power Automate): User Registration App