cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Anonymous
Not applicable

OData Filter substringof, sharepoint Title as first parameter

Hello,

 

I have a flow, triggered by an arrival of an email to an inbox, that uses a GetItems from a Sharepoint list where I'd like to filter to only show certain list items. I'd like to filter the Sharepoint list to only show items where the Title is contained in the initial Emails' Subject.

 

E.g. if the email subject  = 'RE: Access Request', all Sharepoint list items containing 'Access Request' in the Title should be returned.

 

I'm trying to do it with the following formula in the OData filter, but am getting the following error.

colbyc_0-1661982714479.png

If I flip the values around and have the Subject first and Title second, there is no error, but no values are returned. This makes sense though, as no sharepoint list items have a substring in the Title of "RE: Access Request". 

 

Does anyone have any suggestions for this error?

8 REPLIES 8
Expiscornovus
Most Valuable Professional
Most Valuable Professional

Hi @Anonymous,

 

Substringof function is a bit of an odd one. While other functions (like startswith) would start with the column first, for the substringof function it is the other way around:

https://docs.microsoft.com/en-us/sharepoint/dev/sp-add-ins/use-odata-query-operations-in-sharepoint-rest-requests#odata-query-operators-supported-in-the-sharepoint-rest-service

 

startswith( {Col to query},'{string to check}' )
substringof( '{string to check}', {Col to query} )

 

Can you try:

substringof('Re: Access Request', Title)

 



Happy to help out! 🙂

Interested in more #PowerAutomate #SharePointOnline or #MicrosoftCopilotStudio content?
Visit my blog, Subscribe to my YouTube channel or Follow me on Twitter


Anonymous
Not applicable

@Expiscornovus 

 

I've tried it in that order, which doesn't return an error, but is not what I'm looking for. I want to query the Title column for a substring that exists in the Subject. E.g. if the Subject = 'RE: Access Request', return any Title that contains any part of that. I think what you're suggesting is querying the Title column for the entire substirng of 'RE: Access Request'. Does that make sense?

Expiscornovus
Most Valuable Professional
Most Valuable Professional

Hi @Anonymous,

 

Just to clarify your requirement. You mention that you want to match any part of the subject value.

 

Let's say the subject of the e-mail is:

RE: Hello World from Power Automate.

 

In that case you want to retrieve all list items which have 'RE:' or 'Hello' or 'World' or 'from' or 'Power' or 'Automate' in the title of the list item? 



Happy to help out! 🙂

Interested in more #PowerAutomate #SharePointOnline or #MicrosoftCopilotStudio content?
Visit my blog, Subscribe to my YouTube channel or Follow me on Twitter


Anonymous
Not applicable

Really all list items with a Title that matches everything after RE:. Is that possible?

Expiscornovus
Most Valuable Professional
Most Valuable Professional

Hi @Anonymous,

 

For me it is still not clear what you mean with match everything. But to get us started I have assumed you are looking for or operator. I have gone for the dynamic OData query builder approach.

 

Below is an example and a setup.

Let's say an e-mail is received with the subject RE: Hello World from Power Automate. I will try and find every individual word (splitting on the space character).

This example won't be able to handle commas and other type of characters, keep that in mind.

 

With that subject I expect that only item number 6 won't be found in the example list below.

 

skipitem6.png

 

To achieve this result I will dynamically build an OData Query filter:

 

substringof('Hello',Title) or substringof('World',Title) or substringof('from',Title) or substringof('Power',Title) or substringof('Automate',Title)

 

 

1. First I use an empty (temp) Array variable.

 

2. In an apply to each loop I check if the subjects starts with RE: and if that is the case I slice the subject value. After that the result of that is split on a space character

 

 

split(if(startswith(triggerOutputs()?['body/subject'], 'RE: '), slice(triggerOutputs()?['body/subject'], 4), triggerOutputs()?['body/subject']), ' ')

 

 

3. Within the apply to each I append the item with a concat function to our temp array. I use encoded characters to be able to build the substringof('value',Title) string.

 

 

concat('substringof%28%27',item(),'%27%2CTitle%29')

 

 

4. Within the Filter Query I join the values together with an ' or '. I all words need to be in the title you could change this to ' and '. I use a decodeUriComponent to decode the encoded characters back to something readable.

 

decodeUriComponent(join(variables('ODataQueryArray'), ' or '))

 

 

odataquery_builder.png



Happy to help out! 🙂

Interested in more #PowerAutomate #SharePointOnline or #MicrosoftCopilotStudio content?
Visit my blog, Subscribe to my YouTube channel or Follow me on Twitter


Anonymous
Not applicable

Thank you so much for that explanation, but when I said I need every word I meant the entire phrase. E.g. if the email subject is "RE: "Hello big world!" I want to return all titles with the exact phrase "Hello big world!"

 

Would correct filter just be something like below?

 

split(triggerOutputs()?['body/subject'], 'RE: ')

 

Expiscornovus
Most Valuable Professional
Most Valuable Professional

Ok, that simplifies things a lot.

 

In that case you can use this directly in the Get Items action filter (and ignore steps 1 to 3 from my previous suggestion approach).

 

substringof('@{if(startswith(triggerOutputs()?['body/subject'], 'RE: '), slice(triggerOutputs()?['body/subject'], 4), triggerOutputs()?['body/subject'])}',Title)

 

 

substringofexample.png

 

 



Happy to help out! 🙂

Interested in more #PowerAutomate #SharePointOnline or #MicrosoftCopilotStudio content?
Visit my blog, Subscribe to my YouTube channel or Follow me on Twitter


Sahara22
Post Partisan
Post Partisan

Hello @Expiscornovus , I know this is an old post but awesome job explaining everything!  I have a similar issue that I'm trying filter query by name in a sharepoint list.  basically I have two sharepoint lists and I need to find out If list 1 has the same name as list # 2. But sometimes names are attached to text, like @123 so that's why I need to use substring.  then if the name isn't found that "new" name is then created in list # 3. How I have it written now is : substringof('@{variables('varNameToSearch')}',field_1)   --> VarNametoSearch is : 

substring(items('Apply_to_each')?['field_5'],0,outputs('Compose')) . Thanks for your help! 

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!    This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Community MembersNumber SolutionsSuper UsersNumber Solutions Deenuji 9 @NathanAlvares24  17 @Anil_g  7 @ManishSolanki  13 @eetuRobo  5 @David_MA  10 @VishnuReddy1997  5 @SpongYe  9JhonatanOB19932 (tie) @Nived_Nambiar  8 @maltie  2 (tie)   @PA-Noob  2 (tie)   @LukeMcG  2 (tie)   @tgut03  2 (tie)       Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 2: Community MembersSolutionsSuper UsersSolutionsPower Automate  @Deenuji  12@ManishSolanki 19 @Anil_g  10 @NathanAlvares24  17 @VishnuReddy1997  6 @Expiscornovus  10 @Tjan  5 @Nived_Nambiar  10 @eetuRobo  3 @SudeepGhatakNZ 8     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji32ManishSolanki55VishnuReddy199724NathanAlvares2444Anil_g22SudeepGhatakNZ40eetuRobo18Nived_Nambiar28Tjan8David_MA22   Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji11FLMike31Sayan11ManishSolanki16VishnuReddy199710creativeopinion14Akshansh-Sharma3SudeepGhatakNZ7claudiovc2CFernandes5 misc2Nived_Nambiar5 Usernametwice232rzaneti5 eetuRobo2   Anil_g2   SharonS2  

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (1,355)