cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Ajh
Advocate III
Advocate III

SQL GetRows OData Date Filter

I don't understand how to filter on datetime columns in MS Flow / Power Automate. This should be one of the easiest filters to apply... 

 

This page includes an example with pictures, but when replicated does not work:

 

 

 

WorkOrderCreatedTime gt addDays(utcnow('yyyy-MM-ddTHH:mm:ssZ'),-30)

 

 

 

Spam filter I think is triggering on my links sorry for the funky format:

 

 https://www.odata.org/documentation/odata-version-2-0/uri-conventions/ 

 

Note: One of the comments states that it should be surrounded in single quotes, but that also does not appear to work

SQLWorkOrderFilter

 

This page states that the filter criteria for a date/datetime should be surrounded in single quotes and preceded by the word datetime, but this does not appear to work.

 

 

 

 

 

DateTime values must be delimited by single quotation marks and preceded by the word datetime, such as datetime'2010-01-25T02:13:40.1374695Z'.

 

 

 

 

Spam filter I think is triggering on my links sorry for the funky format:

 

 

https://docs.microsoft.com/en-us/previous-versions/dynamicsnav-2016/hh169248(v=nav.90) 

 

 

Doing year(X) and month(X) etc is not an acceptable solution as it will not work if querying data older than 1 calendar year. 

Here are screen shots of things I've tried that don't work (StormDate is my datetime column). Successful response is included at the bottom to demonstrate the format of the response when I leave this particular filter off.

 

  • StormDate gt '2020-02-01T16:38:07.0000000Z'
  • StormDate gt 2020-02-01T16:37:41.0000000Z
  • StormDate gt '2020-12-12T11:11:11Z'
  • StormDate gt '2020-01-01T00:00:00Z'
  • StormDate gt '2020-01-01T00:00:00.000Z'
  • StormDate gt '2020-01-01T00:00:00.00Z'
  • StormDate gt 2020-01-01T00:00:00.00Z
  • StormDate gt datetime'2020-01-01T00:00:00.000Z'

They pretty much all end like this:

 

image.png

Here's a successful response where I leave the filter off:

image.png

57 REPLIES 57

I am using addMinutes rather than addDays but I still can't get this to resolve the way you did. Is your server on premise or in the cloud? Not that I think that's the issue here, since the error message is complaining about JSON syntax but I figured I should ask.

 

wtf.PNG

Mine is on prem. I'm not sure if it's different for cloud v prem. One other thing I've seen that's goofy though is time zones. Maybe you've got a time zone thing with your filter? (I know it's specified in zulu with the Z, but I've seen the time stamp come back from get rows be labeled as zulu when it's in fact in local, or maybe it was vice versa, I can't remember, but I still don't have that issue resolved. I'm kicking that can down the road until DST changes again.)

I have tried just about every method I know, and many I didn't know, and still cannot get this to work.

The problem I have, as I'm sure many do, is that this is inconsistent. If the records are in Sharepoint you can merely type something like:

CreditDate gt ' startOfMonth(utcNow())' and it will return the right results.

If the data is held in SQL (on premise and accessed through the on premise data gateway) it seems that this is close to impossible.

I got excited when I saw this as it seemed to describe everything I needed, but unfortunately doesn't resolve my problem.

So I'm trying to filter based on a field called SpareDate1 (SQL holds as a datetime field) where the datetime held is less than today - 30 days.

For reference this works:

SpareDate1 eq 'formatDateTime(utcNow(),'dd/MM/yyyy')

But this doesn't:
SpareDate1 lt 'formatDateTime(utcNow(),'dd/MM/yyyy')

So I'm left scratching my head, and really not wanting to bring in all of the records, and then having to filter them within my flow.

HELP!!!

@A8Tony if you are doing date comparisons you should always use the yyyy-MM-dd format and make sure that both parts of the comparison are using it. So try that in your filter query.

 

Rob
Los Gallardos
If I've answered your question or solved your problem, please mark this question as answered. This helps others who have the same question find a solution quickly via the forum search. If you liked my response, please consider giving it a thumbs up. Thanks.

Hi @RobElliott thanks for the swift response.
I've tried that.

As an example, here is the data held in my SQL table:

A8Tony_0-1605201166321.png

It is SpareDate1 I am trying to filter on.

 

So, I've just tried

 

SpareDate1 lt (formatDateTime(utcNow(),'yyyy-MM-dd')

SpareDate1 lt (formatDateTime(utcNow(),'yyyy-MM-dd 00:00:00.000')

 

Neither of which have worked.

Right now, I see my only solution is to work on a data view which filters this data out before it even gets to my flow. The really frustrating thing is I'm sure I've done this before 🤔



This works for me with sql on prem through on prem data gateway.

StormDate ge date(2020-01-01T00:00:00Z)

That is plain text that goes in the filter box. If you do StormDate ge '____' it treats the ___ as a string, and doesn't know it's a datetime, which is why that doesn't work. You wrap the ___ in date() which is just a plain string from the flow's point of view, but it's a keyword for the oData stuff to tell it that hey, don't treat ___ as a string or a number, treat it as a datetime.

 

To get 30 days of data, I delete the date out of the above but leave the rest. Then I click inside the parenthesis and add this as an expression in flow. This means that flow will evaluate this formula as an expression and pass the resulting string WITHIN the Odata stuff. This is where you'd have to put the format stuff if you need to do that still, but the rest of the box would stay the same.

addDays(utcNow(),-30)

 and so the final thing looks like this in the flow (note that the purple box is actually the whole adddays formula above, flow just hides some of it).

recording.gif

How did you get this to work? I'm using the same and getting:

We cannot apply operator < to types Date and DateTime.
inner exception: We cannot apply operator < to types Date and DateTime.
Are you using SQL on-premise? (I am)

Thank you

No! I'm getting that from Flow: 

We cannot apply operator < to types Date and DateTime.
inner exception: We cannot apply operator < to types Date and DateTime.
clientRequestId: e6ee30c3-84d4-46d0-94ed-34c4f0c03e7c

If you don't mind, what type of field is StormData?

I'll answer my own question... when I read "We cannot apply operator < to types Date and DateTime." I took it as "we cannot apply operator < to Date OR TO DateTime". Actually, the problem was that I was comparing a Date with a DateTime.

Changing 

SQL_DATE_FIELD le date(AddDays(utcnow(),-20)

to

date(SQL_DATE_FIELD) le date(AddDays(utcnow(),-20) 

fixed the issue

Nice! Good catch! That was definitely not very clear in that error message, I read it same as you did just now, but maybe because I knew the struggle you were probably facing lol

 

Cheers Pablo!

ohthreesixtyfiv
Advocate II
Advocate II

If anyone stumbles into this, tries the solution, and still receive the invalid JSON error...

 

I have found that the following syntax works:

date(ColumnName) ge date(DateValueYouProvide)

 

ohthreesixtyfiv_0-1632764685359.png

 

Cheers!

Ajh
Advocate III
Advocate III

Hi everyone, please consider voting on this 'idea' to fix the implementation of the ODATA spec for date and datetime filtering. I started a ticket with MS and they have told me that it is 'by design' and not on the roadmap to fix. If you would please vote there's a chance they may fix it.

 

https://powerusers.microsoft.com/t5/Power-Automate-Ideas/Get-rows-SQL-filter-ODATA-with-a-boolean-fi...

This fixed my issue - I wasn't using the date function with my first field. Thanks

bobesponja
Resolver II
Resolver II

For some reason I'm not able to use this solution unless I'm using ge instead of gt, and when I use it, the database just returns all the values it can without applying the filter at all.

 

date(LAST_MODIFIED_DATE) ge date(first(outputs('LastModifiedEntry')?['body/value'])?['LatestModification'])
date(LAST_MODIFIED_DATE) ge date(2023-08-24T20:28:11Z)
bobesponja
Resolver II
Resolver II

Decided to try this again to see if it can be solved. I should've specified that i'm using SQL on-prem though on-prem gateway, adn that LAST_MODIFIED_DATE is a datetime2 column.

 

If I use gt instead of ge, the connector returns no results UNLESS I wrap it in addHours(<datetime>, -10), but the values it returns are high enough that addHours(<datetime>, -1) should've covered them. Example:

bobesponja_0-1698846605696.png

Returns:

bobesponja_2-1698847183495.png

 

If I use -9, -8, -7, etc, it returns no results (haven't tested with lower values). Strangely enough, if you convert it to minutes, it allows you to get away with -599 or-598 instead of -600, but at -597 it refuses to budge for some reason. I'm guessing some number somewhere is going far back enough that it registers as yesterday, despite clearly being today in UTC. 

@Ajh thank you for posting the solution, the initial link is dead now.

TSzczota
Regular Visitor

Yes. In my solution it is working ❤️

I set it:
Filter:
date(created_at) ge date(formatDateTime('2024-01-01''yyyy-MM-ddT00:00:00Z'))

TSzczota_0-1708077440470.png

 

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 (6,660)