web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id : EEWH1Wzg6kc17EaY5UQXko
Power Automate - General Discussion
Answered

Reminder using a sharepoint list value inside a formula, is it possible?

Like (0) ShareShare
ReportReport
Posted on 14 Nov 2023 22:26:19 by 45

Hi there,

 

I am trying to calculate how send a reminder.

My SP List is like below:

Start Date | Engage in # Months
1/1/23      |     12
20/2/22    |     48
12/20/23  |     12

Basically the logic is to send a reminder base in these 2 columns: Start Date + Engane in # Months

Thanks

  • Rhiassuring Profile Picture
    8,688 Moderator on 15 Nov 2023 at 21:00:32
    Re: Reminder using a sharepoint list value inside a formula, is it possible?

    Rhiassuring_1-1700082081214.gif

     

  • ferby2023 Profile Picture
    45 on 15 Nov 2023 at 17:44:03
    Re: Reminder using a sharepoint list value inside a formula, is it possible?

    no words to describe how much you helped me! I learned a lot from your answer. Many many thanks, brother! 

  • Verified answer
    Rhiassuring Profile Picture
    8,688 Moderator on 14 Nov 2023 at 23:21:15
    Re: Reminder using a sharepoint list value inside a formula, is it possible?

    Are you able to add a column to your list that is "Start Date" + "# Months"? 

     

    Calculated Column: 

     

    =IF(ISBLANK([StartDate]),"",DATE(YEAR([StartDate]),MONTH([StartDate])+[EngageInXMonths],DAY([StartDate])))

     

    My list ends up looking like this (with my calculated column, "EngageOn")

     

    Rhiassuring_0-1700003142119.png

     

     

    You'll need to create a Recurring flow. Set to Daily. 

     

    Then, you need to calculate the current day. Initialize a variable, (txtCurrentDate) click in the field, use "Expression", and do "utcNow('yyyy-MM-dd').

     

    Now with your handy-dandy calculated column, life is easy:

     

    "Get Items" without any filter.

     

    Then, "Filter Array". Point it at your output from Get Items.

     

    Then, "EngageOn" contains txtCurrentDate.

     

    Rhiassuring_1-1700003532085.png

     

    If you get anything from this, it means you have to send a reminder / notification for each hit. If you don't, then no reminders are due. Run it now, just to see how it works  -- and while you're there, copy the Output from the Filter Array.

     

    So now I'll just do this:

     

    Parse JSON, so we can use the actual fields. You can paste what you've just copied from the outputs after clicking the "Generate from Sample" button. Point the "Content" field at your "Body" from the Filter Array.

     

    A condition length(body('Filter_array')) NOT EQUALS 0. If that's true, then it means we got a hit. If it IS 0, then nothing requires a reminder.

     

    Then, life as normal. If yes, send the email.  Use the Send An Email action, and you can access all of your fields from the "Parse JSON" output. If no, terminate.

     

    Rhiassuring_2-1700003992778.png

     

    So, as an example of a successful run, our filter brought back 2 hits (which you can see form my first screenshot, of the list, is correct) and so we are "sending two emails" (I'm using a compose as an example.) 

     

    Rhiassuring_3-1700004070024.png

     

     

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

Announcing our 2025 Season 2 Super Users!

A new season of Super Users has arrived, and we are so grateful for…

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!

Leaderboard > Power Automate

#1
Michael E. Gernaey Profile Picture

Michael E. Gernaey 497 Super User 2025 Season 2

#2
David_MA Profile Picture

David_MA 436 Super User 2025 Season 2

#3
Riyaz_riz11 Profile Picture

Riyaz_riz11 244 Super User 2025 Season 2

Loading complete