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

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Automate / examples of how to ent...
Power Automate
Answered

examples of how to enter a filter query for excel list row in a table

(0) ShareShare
ReportReport
Posted on by Microsoft Employee

I am not able to find any info on how to enter an odata expression or what that is. I am looking to create a flow to send out a reminder email when the TravelDate in a record is within a certain number of days of today. Attached is a pic of the List rows present in a table action in the excel connector but I can't seem to figure out how to check for "TravelDate" being within a certain number of days from today. My issue is more of understanding the syntax of how to enter this. I cannot find a reference doc that simply explains how expressions showld be entered. 

 

Any advice appreciate.ListRowsflowQuery.png

Categories:
I have the same question (0)
  • Verified answer
    v-bacao-msft Profile Picture
    Microsoft Employee on at

     

    You could refer to the link below for more information on the use of Filter Query.

    https://veenstra.me.uk/2018/11/12/microsoft-flow-filter-queries-in-sharepoint-get-items/

    If the type of TravelDate is text and the time format is "yyyy-MM-dd", you could refer to the following method to configure Filter Query.

    "-5" means a certain number of days, please check the following image and see if it helps:

    40.PNG

     

    Best Regards,

    Hi @Anonymous ,

  • Community Power Platform Member Profile Picture
    Microsoft Employee on at

    Thanks Barry I will give this a try. I think it is what I need. My step is to send out an email based on each record in the table but I think I can figure that out. One of my challengs is that I want to CC people in a CC list but that list is a cell of text containing  "display name, email" spearated by a semicolon (e.g. "FirstName1, LastName1, email1@xx.com;FirstName2, LastName2, email2@xx.com;" and so on. I guess I would need to used to use a split call (documented in Powerapps) a couple of times to get the email address. 

    Any advice on how to figure out that syntax would help. 

    If preferred, I can close out this topic and create it as a new but I'd figured I'd ask while I got someone's attention.

     

    Thanks,

     

     

  • Community Power Platform Member Profile Picture
    Microsoft Employee on at

    After some playing around, and reviewing the article reference by @v-bacao-msft in this thread,  I was able to get a simple filter going. Unfortunately, I need to filter by TravelDate < (targetDate - X days). The Excel connector doc is clear that only a few operations are allowed so I am most likely going to use a conditional statement action followed by filter array in my actual flow.

    Below is an example of how I was testing with  filter array and a listRows module filter. In practice, I will need to elminate the listRows advanced fitler due to the comparison limitation. I just could not find a way to compare the date to a value that can be compared via a < or > so I am stuck with the filterarray module.

     

    Also note, the advanced listRows filter runs in a fraction of the time of the conditional block. I wanted to share this example in case it helps.

     

    Also another lesson I learned is had to use the hover over txt of known expressions to figure out how to reference values that are not appearing in dynamic content. I don't have this all figured out yet but not knowing to use the item() function is what was blocking me for several days on how to properly reference a value. this is different than the ODATA syntax used by the advanced List Rows module but at least I worked through. I just wish flows was easier to work on getting started on manual entry. The dynamic expresson box does not alway show what can be accessed.

     

    Anyway how this helps 

     

    FlowtoFilterArray.png

  • Community Power Platform Member Profile Picture
    Microsoft Employee on at

    How to access the data which is inside "filter array"

  • Community Power Platform Member Profile Picture
    Microsoft Employee on at

    How do we add OR , AND statements while doing the filter query on excel rows ?

  • takolota1 Profile Picture
    4,978 Moderator on at

    Hello msnc & others,


    There are at least 2 ways to achieve multiple filter conditions for Excel since it doesn’t really support multiple filter conditions in a single action.
    The second method I list is also 100x faster & more efficient for larger datasets.

     

    First, you could pull all the data from the entire table and then use the output in a Filter Array.

    To get the data from Filter Array, either use a Parse JSON action afterwards to get the data in dynamic content, or put the action in an Apply to Each with the Filter Array body as the loop value and use expressions like item()?[‘ColumnName’] to get that column/field value.



    Second, besides using Filter Array after pulling all the data in the table, you could use a different Excel List rows for each filter condition and combine them after like:

     

    Get rows 1 - Filter Status eq ‘Complete’

    Get rows 2 - Filter Status eq ‘In-Progress’

    Compose (To simulate an OR statement) - Expression Union(Get rows 1, Get rows 2)

     

    Get rows 1 - Filter Status eq ‘Complete’

    Get rows 2 - Filter Department eq ‘Sales’

    Compose (To simulate an AND statement) - Expression Intersection(Get rows 1, Get rows 2)

     

    I used 1/3 the API actions and had a 100x speed improvement using this second method looking for a few records in a couple hundred thousand rows. The 1st method would take forever to load a couple hundred thousand rows and then you’d have to still filter every 100k batch & combine them.

  • vi0l Profile Picture
    3 on at

    Hi there, i manage to get rows of excel but i cannot seem to do the intersection. Its output is a blank which means the two rows are different, but looking at the output of the excel rows it is exactly the same. I also removed the oodata and the other through the the select in data operation. 

    Is it possible if i see your flow?

  • takolota1 Profile Picture
    4,978 Moderator on at

    Are you using Body or Values?

    You should use values as that will return the array values & not a JSON object containing the values in a field.

     

    If it’s not that, then I can put together an example flow.

  • JoelMills Profile Picture
    31 on at

    But you can't pull all data from a table if there are more than 5000 rows. Pagination limit is 5000.

    I have a table with over 52,000 rows and I need to filter it as it pulls the data, using the OData filter.... 
    I have tried contains(email2,'EmailVar') and it recognises the input email address of the person completing the form

    e.g. it looks for the right email address in the column 'email2' in the spreadsheet and sees if it matches the variable holding the responders email address. The idea being it should filter out only the rows from the responder.

    contains(email2,'FirstnameSurname@XYZ.com')

    But when I run it, I see the list rows filter trying to filter on the email address, but I get no value back from the list.

     

  • takolota1 Profile Picture
    4,978 Moderator on at

    @JoelMills 

     

    You must have a lower level license. You’ll either need to buy a license or create an ID index column & use something like what is shown in this video to pull different sets of 5000 records in several actions, then use a Union to combine the results, then a Filter array on that combined output.

    https://powerusers.microsoft.com/t5/Power-Automate-Cookbook/Batch-Update-SharePoint-List-With-External-Data/td-p/1365410

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

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Leaderboard > Power Automate

#1
David_MA Profile Picture

David_MA 262 Super User 2026 Season 1

#2
Haque Profile Picture

Haque 227

#3
Expiscornovus Profile Picture

Expiscornovus 225 Most Valuable Professional

Last 30 days Overall leaderboard