cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Yattering82
New Member

FLOW TO SEND EMAIL WHEN DATE APPROACHES

Hi there

 

This is the first time posting in the forum but a long time user of the forum. What I am trying to do, is to get a flow to trigger an sending an email when the date of a required audit approaches. The audit due dates are listed in a SharePoint list and you would think that this would be a simple thing to do. However, no matter how much I tinker and how much I see what others have done, I cannot get this to work.

 

This is what I have done:

 

@equals(item()?['Nextauditdue'], adddays(utcnow(),'mm-dd-yyyy')+14)

 

So basically I want this to send me an email when it is 14 days to the audit due date. 

 

If anyone can shed light on this, I would be most grateful.

117 REPLIES 117

I have tried using 'get items' instead of 'get files (properties only)' and again I do get the notification email but flow says it has failed. 

 

Here's what I see in outputs body ... I cannot see my 'Consent_x0020_End_x0020_Date' column in there as it happens. 

 

{
  "value": [
    {
      "@odata.etag""\"13\"",
      "ItemInternalId""6",
      "ID"6,
      "Personal_x0020_Info0": {
        "@odata.type""#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
        "Id"1,
        "Value""No"
      },
      "Personal_x0020_Info0#Id"1,
      "Purpose12": {
        "@odata.type""#Microsoft.Azure.Connectors.SharePoint.SPListExpandedTaxonomy",
        "TermGuid""030ec442-3c21-4d8e-bb6f-26c5d7e4735f",
        "WssId"189,
        "Label""Case study",
        "Path"null,
        "Value""Case study|030ec442-3c21-4d8e-bb6f-26c5d7e4735f"
      },
      "Purpose12#WssId"189,
      "products_x0020_and_x0020_services": {
        "@odata.type""#Microsoft.Azure.Connectors.SharePoint.SPListExpandedTaxonomy",
        "TermGuid""a67d7f16-fd3f-4f7d-8127-08d36c525c1d",
        "WssId"153,
        "Label""Benefactor",
        "Path"null,
        "Value""Benefactor|a67d7f16-fd3f-4f7d-8127-08d36c525c1d"
      },
      "products_x0020_and_x0020_services#WssId"153,
      "Organisation": {
        "@odata.type""#Microsoft.Azure.Connectors.SharePoint.SPListExpandedTaxonomy",
        "TermGuid""1a9c34ec-985b-4149-9445-ab4d2623cf56",
        "WssId"184,
        "Label""Jami & Jewish Care",
        "Path"null,
        "Value""Jami & Jewish Care|1a9c34ec-985b-4149-9445-ab4d2623cf56"
      },

 

Here is a shot of my doc library with workflow cols. Might be helpful to see these too.

doc library.png

 

Thanks again, Vicki

@Victoria

 

Hmm. I'm not sure what's going on. Your column names that show up in the picture are not showing up in the output results. To test things, I've created a new document library, put in two files and made a new column called Expiration with the type Date and Time.

 

Test Library.PNG

 

Then I made a Flow:

 

Flow.PNG

 

So it all worked with no errors. I connected to one of our SharePoint sites and a document library there under the Get File (properties only). Then I used the code we've been discussing to check the dates if the dates in the Expiration column is equal to today + 30 days:

 

@equals(formatDateTime(item()?['Expiration'], 'MM/dd/yyyy'), formatDateTime(addDays(utcNow(), 30), 'MM/dd/yyyy'))

And for me, that information showed up in the Output:

 

Output.png

 

Does any of that help?

 

Can you try renaming your Consent End Date column to just Consent and using the following code under the condition:

 

@equals(formatDateTime(item()?['Consent'], 'MM/dd/yyyy'), formatDateTime(addDays(utcNow(), 30), 'MM/dd/yyyy'))

Let me know if any of that helps! I'm using SharePoint Online with an Office 365 account.

 

Also, based on your picture below, can you double check if you have the Get Files (properties only) pointed to the right document library?

Hi again,
I've fully tested this now. The flow works perfectly if every document in the library has an end date. I added a date for all docs in the library to test.

 

So the flow definately has an issue when there is no date value in the consent end column. It does generate the email but says it fails, presumably when it gets to the records without dates.

I need to be able to run this on selected documents because not all library docs will need to be reviewed and added to the flow. Is there any way to exclude those without a date value or use my other (choice) column 'add to review'. All docs in flow would a 'yes' value in here which corresponds to those with consent end dates.

 

Thanks again for your help. Vicki

@Victoria

 

Awesome to hear that you Flow is working!

 

Okay, now we can make use of the code:

 

@not(empty(triggerBody()?['column name goes here']))

 

Just use the same column name that you used for the expiration condition and put a condition right under the Get Files (properties only).

 

So your Flow will check will check if the particular file has a date, if not it stops. If it does have a date, it'll check if the date is 30 days away from the target date in your column. If not, it stops. If yes, you get an e-mail.

 

Let me know if it works out!

Have done that. But flow still saying failed. Not sure if I am adding condition 2 in the right place?
1.png

 

2.png

@Victoria

 

I believe it should go

  • recurrence
  • get files (properties only)
  • apply to each
  • condition: if not empty
    • yes: date check
      • yes: send e-mail

 

 

Hi again, I really do appreciate you help and patience!

 

Do you mean in this format?


3.png

 

The flow now says it ran successfully however I'm no longer getting any emails. Checked 

 

4.png

Anonymous
Not applicable

Hey

 

This was extremely helpful to me! I just had a couple of additional questions to build on this.

 

In your formula, would the time be a 24hour or 12hour clock? Also would only the items within the '  ' comma's have to be replaced with actual figures?

 

 

Thanks in advance

 

 

Hi, 

Not sure what you mean about only the items within the '  ' comma's have to be replaced with actual figures.

The 'ConsentEnd' column is a 'date and time' column, although I am using it to log the date only, not time.

 

Thanks again, I really appreciate your efforts to help me.

 

Vicki

 

Anonymous
Not applicable

Hey,

 

I am sorry for not communicating my request clearly. I meant to ask which field in the following formula must be changed to make the formula useful.

 

@equals(formatDateTime(item()?['Nextauditdue'], 'MM/dd/yyyy'), formatDateTime(addDays(utcNow(), 14), 'MM/dd/yyyy'))

 

Sorry, quite new to SP and coding.

 

Thanks in advance

Hey @Anonymous,

 

This formula, as far as I know, does not care about the time or whether it's in 12 hour or 24 hour format. It just takes the date information. I have not tested what happens if you give it a Date and Time value.

 

@equals(formatDateTime(item()?['Consent'], 'MM/dd/yyyy'), formatDateTime(addDays(utcNow(), 30), 'MM/dd/yyyy'))

The code above has the word Consent in it. That is the column name that you'll want to change to your own column name. The whole original discussion is about how sometimes the name of the column that has spaces and it you need to give it this column name that SharePoint interprets it as. On page 1 and 2 of this discussion you can see that I was able to get the correct column name based on the the error that Flow returned.

 

Let me know if you have need more help!

@Victoria @Vix1

 

 

Hmm. So your first condition that is checking that things actually have values in them is returning a false value. Meaning, the Flow is not finding any values in the ConsentEnd column.

 

Where it says false in the screenshot below, can you go through and click the arrows inside the Apply to each step and see if you ever get a true?

Sorry about the delay, I was not working yesterday.

Arggh. This is driving me nuts! No, I don't have any matches in the Apply to each step.

Here is the doc library with data entries in the Consent End column...a.png

 

Here is the column name, so it is correct...

 

b.png

 

And this is the formula I've used..

@not(empty(triggerBody()?['ConsentEnd']))

 

Thanks you, Vicki

 

Hi @kristof805

Have finally got this going with help from the MS Flow team. Here's what we did.

There are some slight tweaks to the formula below.

 

condition1:@not(equals(items('Apply_to_each')?['ConsentEnd'], null))

condition2:@equals(items('Apply_to_each')?['ConsentEnd'], formatDateTime(addDays(utcNow(), 30), 'yyyy-MM-dd'))

 

flow working.png

 

Thank you for all your help. Vicki

Anonymous
Not applicable

Hey @kristof805

 

Thank you so much! You have been very helpful.

 

I was having slight issues with error messaged and I was wondering if you could clarify for me which end of the formula the current date is entered into (mm-dd-yyyy) ? I am operating under the assumption that the formula already knows that it needs to check for any items that expire within the next 30 days.

 

Also, would the date move forward everyday? Like if I set it as today's date, when the recurrence happens again tomorrow, will the code check for 30 days from tomorrows date? 

 

Thanks in advance!

@Victoria

 

So glad to hear it's working! I would not have figured out those combinations of formulas but I'm sure your post will be a good reference for others!

@Anonymous

 

The current date is entered into your columns on your SharePoint list or document library column. Then, the Flow checks if that date is exactly 30 days away (you can change this) every day. That's why it runs every day, so it checks for you, so you don't have to. On the day that your date in your column is 30 days away, you can have the Flow send an e-mail, some kind of warning, change something, etc.

Anonymous
Not applicable

@kristof805

 

Thanks! I tried running the flow and got this error message. Any suggestions?

 

Capture.PNG

@Anonymous

 

I believe that error is from the condition not finding a date. Do you have the name of your column with the right name? Do all items have a date in the date column? What do the other results say if you go forward or backward on "next failed" and "previous failed". Are they all indetical?

Anonymous
Not applicable

@kristof805

 

I have put the coloumn name where the formula earlier said Consent. The error shows all the information from the SP List so it is getting the data. All items have a date in the list. I have 60 items in the list, all have the same error message.

Helpful resources

Announcements

Community Roundup: A Look Back at Our Last 10 Tuesday Tips

As we continue to grow and learn together, it's important to reflect on the valuable insights we've shared. For today's #TuesdayTip, we're excited to take a moment to look back at the last 10 tips we've shared in case you missed any or want to revisit them. Thanks for your incredible support for this series--we're so glad it was able to help so many of you navigate your community experience!   Getting Started in the Community An overview of everything you need to know about navigating the community on one page!  Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Community Ranks and YOU Have you ever wondered how your fellow community members ascend the ranks within our community? We explain everything about ranks and how to achieve points so you can climb up in the rankings! Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Powering Up Your Community Profile Your Community User Profile is how the Community knows you--so it's essential that it works the way you need it to! From changing your username to updating contact information, this Knowledge Base Article is your best resource for powering up your profile. Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Community Blogs--A Great Place to Start There's so much you'll discover in the Community Blogs, and we hope you'll check them out today!  Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Unlocking Community Achievements and Earning Badges Across the Communities, you'll see badges on users profile that recognize and reward their engagement and contributions. Check out some details on Community badges--and find out more in the detailed link at the end of the article! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Blogging in the Community Interested in blogging? Everything you need to know on writing blogs in our four communities! Get started blogging across the Power Platform communities today! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Subscriptions & Notifications We don't want you to miss a thing in the community! Read all about how to subscribe to sections of our forums and how to setup your notifications! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Getting Started with Private Messages & Macros Do you want to enhance your communication in the Community and streamline your interactions? One of the best ways to do this is to ensure you are using Private Messaging--and the ever-handy macros that are available to you as a Community member! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Community User Groups Learn everything about being part of, starting, or leading a User Group in the Power Platform Community. Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Update Your Community Profile Today! Keep your community profile up to date which is essential for staying connected and engaged with the community. Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Thank you for being an integral part of our journey.   Here's to many more Tuesday Tips as we pave the way for a brighter, more connected future! As always, watch the News & Announcements for the next set of tips, coming soon!    

Calling all User Group Leaders and Super Users! Mark Your Calendars for the next Community Ambassador Call on May 9th!

This month's Community Ambassador call is on May 9th at 9a & 3p PDT. Please keep an eye out in your private messages and Teams channels for your invitation. There are lots of exciting updates coming to the Community, and we have some exclusive opportunities to share with you! As always, we'll also review regular updates for User Groups, Super Users, and share general information about what's going on in the Community.     Be sure to register & we hope to see all of you there!

April 2024 Community Newsletter

We're pleased to share the April Community Newsletter, where we highlight the latest news, product releases, upcoming events, and the amazing work of our outstanding Community members.   If you're new to the Community, please make sure to follow the latest News & Announcements and check out the Community on LinkedIn as well! It's the best way to stay up-to-date with all the news from across Microsoft Power Platform and beyond.    COMMUNITY HIGHLIGHTS   Check out the most active community members of the last month! These hardworking members are posting regularly, answering questions, kudos, and providing top solutions in their communities. We are so thankful for each of you--keep up the great work! If you hope to see your name here next month, follow these awesome community members to see what they do!   Power AppsPower AutomateCopilot StudioPower PagesWarrenBelzDeenujialexander2523ragavanrajanLaurensMManishSolankiMattJimisonLucas001AmikcapuanodanilostephenrobertOliverRodriguestimlAndrewJManikandanSFubarmmbr1606VishnuReddy1997theMacResolutionsVishalJhaveriVictorIvanidzejsrandhawahagrua33ikExpiscornovusFGuerrero1PowerAddictgulshankhuranaANBExpiscornovusprathyooSpongYeNived_Nambiardeeksha15795apangelesGochixgrantjenkinsvasu24Mfon   LATEST NEWS   Business Applications Launch Event - On Demand In case you missed the Business Applications Launch Event, you can now catch up on all the announcements and watch the entire event on-demand inside Charles Lamanna's latest cloud blog.   This is your one stop shop for all the latest Copilot features across Power Platform and #Dynamics365, including first-hand looks at how companies such as Lenovo, Sonepar, Ford Motor Company, Omnicom and more are using these new capabilities in transformative ways. Click the image below to watch today!   Power Platform Community Conference 2024 is here! It's time to look forward to the next installment of the Power Platform Community Conference, which takes place this year on 18-20th September 2024 at the MGM Grand in Las Vegas!   Come and be inspired by Microsoft senior thought leaders and the engineers behind the #PowerPlatform, with Charles Lamanna, Sangya Singh, Ryan Cunningham, Kim Manis, Nirav Shah, Omar Aftab and Leon Welicki already confirmed to speak. You'll also be able to learn from industry experts and Microsoft MVPs who are dedicated to bridging the gap between humanity and technology. These include the likes of Lisa Crosbie, Victor Dantas, Kristine Kolodziejski, David Yack, Daniel Christian, Miguel Félix, and Mats Necker, with many more to be announced over the coming weeks.   Click here to watch our brand-new sizzle reel for #PPCC24 or click the image below to find out more about registration. See you in Vegas!       Power Up Program Announces New Video-Based Learning Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram. These include a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the image below to find out more!   UPCOMING EVENTS Microsoft Build - Seattle and Online - 21-23rd May 2024 Taking place on 21-23rd May 2024 both online and in Seattle, this is the perfect event to learn more about low code development, creating copilots, cloud platforms, and so much more to help you unleash the power of AI.   There's a serious wealth of talent speaking across the three days, including the likes of Satya Nadella, Amanda K. Silver, Scott Guthrie, Sarah Bird, Charles Lamanna, Miti J., Kevin Scott, Asha Sharma, Rajesh Jha, Arun Ulag, Clay Wesener, and many more.   And don't worry if you can't make it to Seattle, the event will be online and totally free to join. Click the image below to register for #MSBuild today!   European Collab Summit - Germany - 14-16th May 2024 The clock is counting down to the amazing European Collaboration Summit, which takes place in Germany May 14-16, 2024. #CollabSummit2024 is designed to provide cutting-edge insights and best practices into Power Platform, Microsoft 365, Teams, Viva, and so much more. There's a whole host of experts speakers across the three-day event, including the likes of Vesa Juvonen, Laurie Pottmeyer, Dan Holme, Mark Kashman, Dona Sarkar, Gavin Barron, Emily Mancini, Martina Grom, Ahmad Najjar, Liz Sundet, Nikki Chapple, Sara Fennah, Seb Matthews, Tobias Martin, Zoe Wilson, Fabian Williams, and many more.   Click the image below to find out more about #ECS2024 and register today!     Microsoft 365 & Power Platform Conference - Seattle - 3-7th June If you're looking to turbo boost your Power Platform skills this year, why not take a look at everything TechCon365 has to offer at the Seattle Convention Center on June 3-7, 2024.   This amazing 3-day conference (with 2 optional days of workshops) offers over 130 sessions across multiple tracks, alongside 25 workshops presented by Power Platform, Microsoft 365, Microsoft Teams, Viva, Azure, Copilot and AI experts. There's a great array of speakers, including the likes of Nirav Shah, Naomi Moneypenny, Jason Himmelstein, Heather Cook, Karuana Gatimu, Mark Kashman, Michelle Gilbert, Taiki Y., Kristi K., Nate Chamberlain, Julie Koesmarno, Daniel Glenn, Sarah Haase, Marc Windle, Amit Vasu, Joanne C Klein, Agnes Molnar, and many more.   Click the image below for more #Techcon365 intel and register today!     For more events, click the image below to visit the Microsoft Community Days website.      

Tuesday Tip | Update Your Community Profile Today!

It's time for another TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   We're excited to announce that updating your community profile has never been easier! Keeping your profile up to date is essential for staying connected and engaged with the community.   Check out the following Support Articles with these topics: Accessing Your Community ProfileRetrieving Your Profile URLUpdating Your Community Profile Time ZoneChanging Your Community Profile Picture (Avatar)Setting Your Date Display Preferences Click on your community link for more information: Power Apps, Power Automate, Power Pages, Copilot Studio   Thank you for being an active part of our community. Your contributions make a difference! Best Regards, The Community Management Team

Hear what's next for the Power Up Program

Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram, including a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the link below to sign up today! https://aka.ms/PowerUp  

Super User of the Month | Ahmed Salih

We're thrilled to announce that Ahmed Salih is our Super User of the Month for April 2024. Ahmed has been one of our most active Super Users this year--in fact, he kicked off the year in our Community with this great video reminder of why being a Super User has been so important to him!   Ahmed is the Senior Power Platform Architect at Saint Jude's Children's Research Hospital in Memphis. He's been a Super User for two seasons and is also a Microsoft MVP! He's celebrating his 3rd year being active in the Community--and he's received more than 500 kudos while authoring nearly 300 solutions. Ahmed's contributions to the Super User in Training program has been invaluable, with his most recent session with SUIT highlighting an incredible amount of best practices and tips that have helped him achieve his success.   Ahmed's infectious enthusiasm and boundless energy are a key reason why so many Community members appreciate how he brings his personality--and expertise--to every interaction. With all the solutions he provides, his willingness to help the Community learn more about Power Platform, and his sheer joy in life, we are pleased to celebrate Ahmed and all his contributions! You can find him in the Community and on LinkedIn. Congratulations, Ahmed--thank you for being a SUPER user!

Users online (6,328)