OData Filter query in SharePoint Get items in Flow (sharepains.com)


Starts with function in OData Filter

An OData filter query can optimize your flows in Power Automate  dramatically.

First collecting all items and then use conditional logic to do what you  want to do is just not good enough.

SharePoint Get Items action

Before reading this post you might also want to have a look at the new still in preview version of filter queries.

Easier way to manage Filter Queries using the experimental features

When you develop flows for SharePoint in Microsoft Flow you will find yourself many times dealing with list items. Adding items, removing items, updating item it is all easy. One of the trickier things is the SharePoint Get Items action. Quite quickly you will find that you need to understand OData Filter query option.

Get Items Action with OData Filter Query in Power Automate

I will start by having a look at doing things the wrong way. Yes, I like the showing you the wrong way as much as I like showing you the right way.

The Wrong Way

When you get list items do you find that you are getting too many items back and that you need to use conditions or other options within Flow to select the right items?

You will probably find that your flow looks a bit like this. The general structure to look out for is a Condition as the first step inside an Apply to each control while one of the branches of the control is empty.

Get Items followed by an Apply to each  with a condition in it in a Flow

In general this means that you simply collected to many items and your now looping through too many items. This is not a good idea.

The Better Way with an OData filter query

Within the SharePoint Get items action there is a Filter Query available. This Filter Query can be used to select the right items.

The problem with this Filter query however is that it isn’t immediately clear what the syntax is. The Tooltip helps a little bit:

An ODATA filter query to restrict the entries returned (e.g. stringColumn eq ‘string’ OR numberColumn lt 123).

For non-developers/citizen developer this might not immediately help. The other problem is that this syntax is actually wrong!

recently I tried the following and it didn’t work!

stringColumn eq 'string' AND numberColumn lt 123


It didn’t work until I changed it to the following filter query

(stringColumn eq 'string') and (numberColumn lt 123)

I’m going to start by having a look at the syntax.

Syntax

The general syntax of a simple query is:

fieldname operation value

The field names that are used are the internal field names as used by SharePoint. These internal field names can be found within column settings in SharePoint. Simply go to the settings for the column and in the URL you will find the field name.

The operations can eq, be lt, gt, ge, le, ne  (Equal to, Less Than, Greater Than, Greater than or Equal to, Less than or Equal to, No Equal to).

This makes it easy to compare a field value to an actual value. however you might find that you need to query multiple field. The easiest approach is the use of the and or or operations.

Finally the value is the value that you are comparing the field name with. Please note that you will need to use single quotes (‘) around the values. For numbers Flow is happy to accept both with and without quotes, however for text values they are required. Therefore you might as well always use quotes.

Available Functions

Now that I’ve mentioned functions in the Query Filter it might be useful to have a look at the available options and potential ways of using them. The following functions are available within the query filters:

  • endswith
  • startswith
  • substringof
  • length
  • day
  • year
  • hour
  • minute
  • second

Some of these are more obvious than others. Time to look at some examples.

endswith

example

endswith(MyField, 'test')

The above example will select all items where MyField ends with test.

startswith

example

startswith(MyField, 'test')

The above example will select all items where MyField starts with test.

SharePoint Get Items action showing startswith(Title, test)

substringof

The substringof function is on that you might get wrong the first time you use it. Especially when you are familiar with the starts with or ends with functions. also the documentation link  that you might find when you google is wrong. The better document to look at is Use OData query operations in SharePoint REST requests, although that page doesn’t seem to list all; available functions.

Get Items showing substring of function

Note that in the Filter Query you first have to supply the text you are looking for followed by the field value. Therefore the right example is:

substringof('test',Title)

length

The length function is not supported.

day, year, hour, minute, second

When you work with dates querying by day can be useful. For example when you want to find all items that were modified on the first day of the month you should be able to use the day function.

Get Items showing date check on created date

However I couldn’t get the date and time functions to work in Power Automate. The only way to filter by dates is the simpler option of comparing the date field with a specified date.

using something like the following as a query should work:

Created gt '2018-11-25'

But I have seen the above fail when the wrong format for the date is used. So be careful.

Then I created a new list and created a new list with dates and it worked as shown below. Both gt and eq worked for date time fields that included and the ones that didn’t include the time.

OData Filter query in SharePoint Get items in Power Automate Microsoft Flow, Microsoft Power Automate image 57

So the last example shows us how to filter by a date, but what if there are empty date fields. Can we filter those out?