cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
AlanStevens
Helper I
Helper I

Error when trying to trigger email based on SharePoint List Date Value

Hi

 

I'm trying to trigger an email to be sent when a date field for a SharePoint list item is equal to today. I've set this as a scheduled flow to run once a day to check the date and trigger the email. 

 

When the flow runs I get the following error: 

 

The execution of template action 'Apply_to_each' failed: the result of the evaluation of 'foreach' expression '@items('Apply_to_each_2')?['Date_x0020_Acknowledgement_x0020']' is of type 'String'. The result must be a valid array.

 

I'm assuming this is a formatting issue for the date field? It is formatted correctly as a date rather than text (as I need it to display correctly as a date in SharePoint). Have I done something else wrong? Attached is the condition used to trigger the email.

 

If anyone can help I will be very greatful! 🙂

1 ACCEPTED SOLUTION

Accepted Solutions
Blurryface
Resolver I
Resolver I

It is likely a Time zone issue with your SharePoint tenant.

 

There's a few things you can do (in no particular order, note also you only need to do one of the options below -not all):

1-

Change Date field on SharePoint to include times and set it to be 21/07/2022 23:00 for example (this may not be suitable if your getting users to enter in this data manually to the list)

 

2 -

Convert the time zone on the SharePoint date field to your time zone via the flow using the an OOTB action or expression: Converting time zone in Power Automate - Power Automate | Microsoft Docs

 

3 -

Change the date field to a single text field instead on SharePoint (this may not be suitable if your getting users to enter in this data manually)

 

4 -

You can add 1 day to the date by using the expression below:

formatDateTime(addDays(items('Apply_to_each')?['Date_x0020_Acknowledgement_x0020'],1),'dd/MM/yyyy')

View solution in original post

15 REPLIES 15
AlanStevens
Helper I
Helper I

This is the condition setThis is the condition set

Blurryface
Resolver I
Resolver I

Hi @AlanStevens,

There is two problems I can see with your Flow:

1. You need to move your condition out of the “Apply to each” and then delete the “Apply to each” so your left with the condition within the “Apply to each 2” only. (That will remove the error your seeing)

 

2. Your condition will need a function to format the date fields as utcNow() includes minutes and seconds so your date won’t match exactly down to the minute or second.

 

You can use a formatDateTime() function on both your Date Acknowledgement and the utcNow().
Here’s utcNow as an example: formatDateTime(utcNow(),‘dd/MM/yyyy’) you will need to do the same for the Date Acknowledgment dynamic content also.

 

let me know if this resolves your issue, thanks 

Hi

 

Thanks for your response - How do I use that function? Is it the initialise variable? when I try to do that for the Data Acknowledgement - it doesn't let me pick from the list of dynamic content - all that is there under dynamic content is 'Body' and 'Value' - all my other fields names are not showing.

AlanStevens
Helper I
Helper I

I cant seem to select the synamic field to formatI cant seem to select the synamic field to format

Blurryface
Resolver I
Resolver I

Hi @AlanStevens 

 

So you need to identify what the dynamic content field name is and enter it manually into the function, you can find the name by first adding it into a compose and then selecting "Peek code":

 

Blurryface_0-1658396207460.png

 

Blurryface_1-1658396291565.png

 

So your function will read something similar to the following you will just need to change the piece in red to be your Data Acknowledgement field:

 

formatDateTime(items('Apply_to_each')?['AppVersion'],‘dd/MM/yyyy’)

 

Also once you have this working you can delete the Compose as this is only used to identify what the dynamic content field name is you need to refer to add to the function.

AlanStevens
Helper I
Helper I

Thank you for your help!. I've done that now for both the UTC now and the dynamic field. The flow seems to run without error, however it's not triggering the action as it is saying the expression result is false not true which I can't understand. I've checked my data (see below) the Date acknowledgement due is today so it should have triggered the action but it isn't. Any other ideas?date1.PNGformatdate1.PNGrun1.PNG

Blurryface
Resolver I
Resolver I

No problem at all - can you share the expression for both within the condition please?

 

Also if you want to add two composes above the condition you can check what the condition is trying to evaluate - see example below:

 

Blurryface_0-1658401598051.png

 

Flow run then shows:

Blurryface_1-1658401683779.png

 

AlanStevens
Helper I
Helper I

Hi

 

Expression for the dynamic field: 

formatDateTime(items('Apply_to_each')?['Date_x0020_Acknowledgement_x0020'],'dd/MM/yyyy')
 
Expression for 'Today' 
formatDateTime(utcNow(),'dd/MM/yyyy')
 
I have tried to add those compose sections in above the condition but now I get an error saying it can't save so not sure what i'm doing wrong! - Apologies, i'm really bad at this LOLCompose1.PNG
Blurryface
Resolver I
Resolver I

No worries at all 🙂

 

So the composes need to be within the apply to each - they can't be outside it as the apply to each loops and checks each value in the list including the composes.

AlanStevens
Helper I
Helper I

Hi,

 

Thank you - I have done that and managed to save the flow. Thank you for the suggestion as I can now see why the action isn't triggering, although I don't understand how this has happened! 

 

In the screenshot below - you can see the first compose is for the dynamic field pulled from SharePoint, and the second compose is the 'today' condition..

 

The action isn't triggering because the dates do not match - but the data field in SharePoint is showing 21/07/2022 NOT 20/07/2022 - so I don't understand how the date is somehow different when the data is being retrieved by Power Automate??  There is no date field at all in my SharePoint list that shows 20/07/2022CompFlowRun.PNG

AlanStevens
Helper I
Helper I

I've had a closer look at the data - I think the problem is in SharePoint rather than Power Automate. The date field im using to act as the condition is a calculated field based on another field's value (So in my case I have a received date and then other dates are populated as trigger points for activities based on the received date plus x days). Looks like although the calculated fields display correctly in SharePoint and in an excel extract, the data being supplied to PowerBI isn't the same - maybe due to the time being included?? 

 

Anyway, I was wondering, rather than use these calculated date fields as the condition - can I use a normal date field and within the expression add a number of days? (as well as ensuring the format is dd/MM/yyyy) ? Is this possible?

 

Hope you can help

Blurryface
Resolver I
Resolver I

It is likely a Time zone issue with your SharePoint tenant.

 

There's a few things you can do (in no particular order, note also you only need to do one of the options below -not all):

1-

Change Date field on SharePoint to include times and set it to be 21/07/2022 23:00 for example (this may not be suitable if your getting users to enter in this data manually to the list)

 

2 -

Convert the time zone on the SharePoint date field to your time zone via the flow using the an OOTB action or expression: Converting time zone in Power Automate - Power Automate | Microsoft Docs

 

3 -

Change the date field to a single text field instead on SharePoint (this may not be suitable if your getting users to enter in this data manually)

 

4 -

You can add 1 day to the date by using the expression below:

formatDateTime(addDays(items('Apply_to_each')?['Date_x0020_Acknowledgement_x0020'],1),'dd/MM/yyyy')

AlanStevens
Helper I
Helper I

Hi

 

I opted for option 4 - I get an error when running. This is the compose error:

InvalidTemplate. Unable to process template language expressions in action 'Compose' inputs at line '0' and column '0': 'In function 'addDays', the value provided for date time string '19/07/2022' was not valid. The datetime string must match ISO 8601 format.'.

 

This is the format of the expression: 

 

formatDateTime(addDays(items('Apply_to_each')?['DateofComplaint'],2),'dd/MM/yyyy')
 
The new field im using from SharePoint which is just a normal date field (not calculated) is 'DateofComplaint'
 
Any idea what i'm doing wrong?
AlanStevens
Helper I
Helper I

I've FINALLY got it to work bny changing the format of the date field as you suggested! Thank you so much for spending all this time helping me with this - really appreciate it!!

Blurryface
Resolver I
Resolver I

Great! 😀 Your welcome - I ran a test and it was actually this code that I should've sent you which should do the trick also.

addDays(items('Apply_to_each')?['DateofComplaint'],2,'dd/MM/yyyy')

Helpful resources

Announcements

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!

Tuesday Tip: Getting Started with Private Messages & Macros

Welcome to 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.   As our community family expands each week, we revisit our essential tools, tips, and tricks to ensure you’re well-versed in the community’s pulse. Keep an eye on the News & Announcements for your weekly Tuesday Tips—you never know what you may learn!   This Week's Tip: Private Messaging & Macros in Power Apps Community   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!   Our Knowledge Base article about private messaging and macros is the best place to find out more. Check it out today and discover some key tips and tricks when it comes to messages and macros:   Private Messaging: Learn how to enable private messages in your community profile and ensure you’re connected with other community membersMacros Explained: Discover the convenience of macros—prewritten text snippets that save time when posting in forums or sending private messagesCreating Macros: Follow simple steps to create your own macros for efficient communication within the Power Apps CommunityUsage Guide: Understand how to apply macros in posts and private messages, enhancing your interaction with the Community For detailed instructions and more information, visit the full page in your community today:Power Apps: Enabling Private Messaging & How to Use Macros (Power Apps)Power Automate: Enabling Private Messaging & How to Use Macros (Power Automate)  Copilot Studio: Enabling Private Messaging &How to Use Macros (Copilot Studio) Power Pages: Enabling Private Messaging & How to Use Macros (Power Pages)

Users online (4,120)