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

Filtering OR expression

Hi all,

I'm trying to list all active records that have a field (ec_noc) that has either value of '2' or '3'.  I think what I need to do is to use the connector for List all Records and put an expression into the Filter Rows field.

The two expressions that I've been able to come up with so far (and are not working) are: 

ec_noc eq 948180002 or 948180003

((using this link as reference https://diyd365.com/2019/11/20/every-power-automate-ms-flow-filter-query-you-ever-wanted-to-know-as-... ))

/Certification?$filter=ec_noc eq 948180002 or ec_noc eq 948180003
((using this link as reference: https://docs.mendix.com/refguide/odata-query-options AND https://www.odata.org/documentation/odata-version-2-0/uri-conventions/ ))


Would greatly appreciate feedback on this!

2 ACCEPTED SOLUTIONS

Accepted Solutions
ViditGholam
Skilled Sharer
Skilled Sharer

Hi @Tarjani  So as I said I tried it in my trail environment and this is how it works.

 Case - 

Entity name - Project Contracts (orders) 

Field name - NOC Type 

Option set values - 

ViditGholam_0-1616658218291.png

 

so in my case I have 3 records (Mentioned in red are the destination types selected in those records)

ViditGholam_1-1616658331927.png

Now I am fetching for active Project contracts who's NOC Type is Operations or Destinations.

ViditGholam_2-1616658516819.png

results of this query (Download this Query from the download fetch XML Option as in the above image)

ViditGholam_3-1616658558023.png

Lets go to the flow for this 

ViditGholam_4-1616658642084.png

ViditGholam_5-1616658702766.png

ViditGholam_6-1616658739147.png

Out put - 

ViditGholam_7-1616658835636.png

ViditGholam_10-1616658929973.png

 

ViditGholam_9-1616658897939.png

I have added compose to show you the record name don't include that in your flow .

 

Hope this helps ! 

Let me know in case any issues.

 

Also Please take some time to mark this post as answered if your issues is resolved and hit me a thumbs up.

 

 

 

 

 

 

View solution in original post

Hi @ViditGholam ,
Just thought I'd let you know that I managed to get the fetch to work.  When the row for the ordering attribute was removed I was able to get the flow to run through the condition successfully.  So the fetch below is what was successful.

 

 

<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
<entity name="vin_certification">
<attribute name="vin_certificationid" />
<attribute name="vin_name" />
<attribute name="createdon" />
<filter type="and">
<condition attribute="statecode" operator="eq" value="0" />
<condition attribute="ec_noctype" operator="in">

<value>948180003</value>

<value>948180002</value>

</condition>
</filter>
</entity>
</fetch>


Thanks for all your suggestions and guidance on this, it was really appreciated.

View solution in original post

23 REPLIES 23
ViditGholam
Skilled Sharer
Skilled Sharer

Hi @Tarjani  as per my understanding you want to retrieve Active Records who's field named (ec_noc) has some data i.e. is not empty .

Step -1

you can achieve this by using  filter query i.e. by using advance find fetch your entity record who's record status is active and the field ec_no is not empty .

might look something like this.

ViditGholam_0-1616566444767.png

you will get a fetch XML query from this then use this query in your Flow and use the below condition 

empty(body('Your flow connector name')?['value']) is equal to true 
ViditGholam_1-1616566826421.png

 

and put your next condition in the "no" section as shown above 

 

Let me know if this helps !

 

Hi @ViditGholam ,
Something in my expression might have given a misleading impression.  I have already filtered for active records, I am trying to filter the noc field to look for two specific values which are actually labelled 'Operations' or 'Destinations'.  The goals it to only pick up active records with these values.

The filter for active records is here:

Tarjani_0-1616638854076.png


The filter for the noc (which is actually ec_notype) field is here:

Tarjani_2-1616638958522.png

 

Mira_Ghaly
Multi Super User
Multi Super User

@Tarjani 

can you remove highlighted part?remove till 

=

Mira_Ghaly_0-1616640267112.png

 

If this post helps you with your problem, please mark your as Accepted solution.If you like my response, please give it a Thumbs Up.

Blog: here

HI @Mira_Ghaly ,
Thanks for that feedback.  It seemed obvious to remove that part after someone said this.  The good thing is that it ran, but it is bringing back too many records.  That expression brings back over 2000 records instead of the expected 20.  It should be a simple or expression, so I tried what @ViditGholam said about the fetch xml from advanced find and I get this:

<condition attribute="ec_noctype" operator="in">

<value>948180003</value>

<value>948180002</value>

would I turn that into something like:  ec_noctype in 948180003 or 948180002 ?

ViditGholam
Skilled Sharer
Skilled Sharer

@Tarjani Why don't you try to filter everything in just a single Fetch XML.

 

ViditGholam
Skilled Sharer
Skilled Sharer

I will try this out and let you know.

Hi @ViditGholam ,

The whole part - that would be active and noc type filter together.  Yes that would be more efficient.  This is what I get in fetch.  The green is where I imagine it being important.  I've been slow to this path as I hadn't been successful transfering the fetch to a connector so far.


 

<?xml version="1.0"?>

-<fetch distinct="false" mapping="logical" output-format="xml-platform" version="1.0">


-<entity name="ec_certification">

<attribute name="ec_name"/>

<attribute name="createdon"/>

<attribute name="ec_year"/>

<attribute name="ec_account"/>

<attribute name="ec_certificationid"/>

<order descending="false" attribute="vin_name"/>


-<filter type="and">

 


-<condition attribute="ec_noctype" operator="in">

<value>948180003</value>

<value>948180002</value>

</condition>

<condition attribute="statecode" operator="eq" value="0"/>

</condition>

</filter>

</entity>

</fetch>

 

 

ViditGholam
Skilled Sharer
Skilled Sharer

Yes @Tarjani That's exactly what I was trying to say try it if it works for you 

if it works for you please mark this post as Accepted solution and hit me a thumbs up 

 

Let me know in case any issues

 

ViditGholam
Skilled Sharer
Skilled Sharer

I will implement it and show you so that its more clear to understand

 

ViditGholam
Skilled Sharer
Skilled Sharer

Hi @Tarjani  

Here is how you should do it suppose I have an Entity "Projects" and it has a field "Project Classification" 

Case - I want to filter "Active" Projects in which Project Classification is either "Client Project" or "Internal Systems".

Here is the advance find query 

ViditGholam_0-1616642753045.png

ViditGholam_1-1616642785130.png

now I got my Fetch XML as below - 

<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
<entity name="msdyn_project">
<attribute name="msdyn_projectid" />
<attribute name="msdyn_subject" />
<attribute name="createdon" />
<order attribute="msdyn_subject" descending="false" />
<filter type="and">
<condition attribute="statuscode" operator="eq" value="1" />
<condition attribute="cf_projectclassification" operator="in">
<value>100000000</value>
<value>100000002</value>
</condition>
</filter>
</entity>
</fetch>

This is how my flow looks- 

ViditGholam_2-1616642919417.png

 

 

Hi @ViditGholam ,

I put the fetch into the Fetch Xml Query field and I'm getting an error.  The error message is below.  I've also put the fetch query that was used.  I tried changing the query several times until I realised that the field ec_noctype is actually a Global Option Set/Choice field, which has no issues appearing in the advanced find fetch, but seems to be an issue here. 

 

 


Error message
'vin_certification' entity doesn't contain attribute with Name = ' ec_noctype' and NameMapping = 'Logical'. MetadataCacheDetails: ProviderType=Dynamic, StandardCache=True, IsLoadedInStagedContext = False, Timestamp=517723116, MinActiveRowVersion=517723116, MetadataInstanceId=51518957, LastUpdated=2021-03-25 04:01:13.630

 

Initial Fetch from advanced fine

<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
<entity name="vin_certification">
<attribute name="vin_certificationid" />
<attribute name="vin_name" />
<attribute name="createdon" />
<order attribute=" vin_certification" descending="true" />
<filter type="and">
<condition attribute="statuscode" operator="eq" value="0" />
<condition attribute=" ec_noctype" operator="in">
<value>100000003</value>
<value>100000002</value>
</condition>
</filter>
</entity>
</fetch>

 

ViditGholam
Skilled Sharer
Skilled Sharer

@Tarjani I understood I suppose this field is not present on your entity "Vin_certification"

Mira_Ghaly
Multi Super User
Multi Super User

@Tarjani 

Can you share screen of flow history on which step you are getting this error?

If this post helps you with your problem, please mark your as Accepted solution.If you like my response, please give it a Thumbs Up.

Blog: here

It wont' really show much, as it is happening right at the very beginning.

Tarjani_0-1616648258515.png

 

I didn't include it above as it cancels before this condition, but I've expanded it here all the same

 

 

Tarjani_1-1616648344886.png

 

ViditGholam
Skilled Sharer
Skilled Sharer

Hi @Tarjani I will implement it exactly the way you want in my trail environment and get back to you mean while

check if the Field (attribute) you are trying to fetch is present on that entity form.

Thank you for looking at it @ViditGholam.

In my mind I knew the field was there, but had to get screen shots for my own confirmation.


Tarjani_1-1616649405951.png

 

 

Tarjani_0-1616649384219.png

ViditGholam
Skilled Sharer
Skilled Sharer

Hi @Tarjani  So as I said I tried it in my trail environment and this is how it works.

 Case - 

Entity name - Project Contracts (orders) 

Field name - NOC Type 

Option set values - 

ViditGholam_0-1616658218291.png

 

so in my case I have 3 records (Mentioned in red are the destination types selected in those records)

ViditGholam_1-1616658331927.png

Now I am fetching for active Project contracts who's NOC Type is Operations or Destinations.

ViditGholam_2-1616658516819.png

results of this query (Download this Query from the download fetch XML Option as in the above image)

ViditGholam_3-1616658558023.png

Lets go to the flow for this 

ViditGholam_4-1616658642084.png

ViditGholam_5-1616658702766.png

ViditGholam_6-1616658739147.png

Out put - 

ViditGholam_7-1616658835636.png

ViditGholam_10-1616658929973.png

 

ViditGholam_9-1616658897939.png

I have added compose to show you the record name don't include that in your flow .

 

Hope this helps ! 

Let me know in case any issues.

 

Also Please take some time to mark this post as answered if your issues is resolved and hit me a thumbs up.

 

 

 

 

 

 

Hi @ViditGholam ,
First of all thank you for the time you put into testing that and doing the screen shots. 

 

What you have put together is exactly what I did for the advance find fetch xml.  It would work if I was doing it with any other field other than the NOC type field.  When trying to filter with the NOC field, it has the error that the field can't be found on the entity, that I shared earlier - which is my challenge.

Initially I tried to get around this using a variable to filter out the ones that didn't have this NOC Type:

Tarjani_0-1616725241383.png

 

Tarjani_1-1616725250161.png

 

Tarjani_2-1616725258495.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 (5,757)