Skip to main content
Community site session details

Community site session details

Session Id :
Power Automate - Building Flows
Unanswered

Set up Flow to Send Email 3 days before Date Range

(0) ShareShare
ReportReport
Posted on by

Hello!

 

I am new to Microsoft365, and am hoping someone is able to assist me with how to create a Flow. I am creating an "On-Call Schedule", with Column A being the Technician, Column B with their Email Address and Column D with their "On-Call Start Date".

 

Spreadsheet ExampleSpreadsheet Example

 

I'd like to set up a Flow so an email is automatically sent to the technician 3 days before their On-Call Start Date.  Is this possible? and if so, any guidance on how to set this up is greatly appreciated!

  • David_MA Profile Picture
    11,767 Super User 2025 Season 1 on at
    Re: Set up Flow to Send Email 3 days before Date Range

    Yes, this can be done. You will want to use a recurring flow that runs each day. In the Get items action you will use a filter query to get the items where the on-call start date is three days from the current date. This is an example of something I have done:

    David_MA_1-1674505993514.png

    In the above my End_x0020_Date field would correspond to your On-Call Start date (you need to use the internal name of the field from your list). The first Output in the expression is from the first compose action and the second Output is from the second compose action.

     

    This is the expression in Date Filter 1:

    addDays(startOfDay(utcNow()),3)

    And this is the expression in Date Filter 2:

    addDays(startOfDay(utcNow()),4)

    You need to use both gt and lt in the query filter because a time is actually stored in date fields even if you are not using time.

     

    You will want to add a condition after your Get items action to ensure it found any for that day to avoid workflow errors:

    David_MA_2-1674506320773.png

    The expression in the first part of the condition is, which tells you how many items were found matching the query:

    length(outputs('Get_items')?['body/value'])

     

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Paul Stork – Community Spotlight

We are honored to recognize Paul Stork as our July 2025 Community…

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Announcing the Engage with the Community forum!

This forum is your space to connect, share, and grow!

Leaderboard > Power Automate

#1
Michael E. Gernaey Profile Picture

Michael E. Gernaey 497 Super User 2025 Season 1

#2
David_MA Profile Picture

David_MA 436 Super User 2025 Season 1

#3
Riyaz_riz11 Profile Picture

Riyaz_riz11 244 Super User 2025 Season 1