cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Kmayes
Post Prodigy
Post Prodigy

Multiple condition issue

I have a flow that i thought would be very easy to create, however i am banging my head against the wall so i'm hoping someone can help with my issue.

My flow currently runs once a day, it then gets the items from a SP list that i have filtered using Odata (to this point it all works fine)

After this point want the flow to run multiple conditions but run through each independently so that the end e-mail can be better customised. So in effect if condition one is met go on to check the next condition...and so on 

 

However when i start adding the send an e-mail action it keeps asking for apply to each again and everything ive tried does not work??

1 ACCEPTED SOLUTION

Accepted Solutions
Anonymous
Not applicable

@Kmayes 

 

ok, so since there are multiple values within "PPENotUsed", you'll need a second Apply to Each loop within the first (lets call it 'Apply to Each 2') so that as you're iterating through each of the List items, you will also iterate through all of the PPENotUsed values for each item. It is inside of this second loop that you'll want to put your append to array action block with an expression like:

 

items('Apply to each 2')?['PPENotUsed']?['Value']

 

it might also be simpler than that, at this point. You might be able to get the value through Dynamic Content, since the item that the second Apply to each loop is iterating through will be the Values of PPENotUsed. So you might be able to pass in "Current Item" to your Append action from the dynamic Content list of Apply to Each 2. Give that a try as well.

 

Hurray for learning!

View solution in original post

26 REPLIES 26
Anonymous
Not applicable

Hello,

 

If you are trying to put Dynamic Content directly from "Get Items" from SP into your email, Power Automate makes you iterate through every item in the list; thus the "Apply to Each" loop.

 

I would suggest initializing a variable(s) and loading whatever custom data you want into the variable(s), then putting the variable(s) in the email.

 

If this doesn't work, please provide some screenshots of your flow to give a better understanding of the situation.

 

thanks,

Kyle

@Anonymous 

Oh ok I think I get what you mean, but may need a bit of guidance as I'm ok with basic flows but not used variables in flows.

 

Below is what i'm currently working with if you need any more info let me know 🙂

 

multiple condition.JPG

 

Hi @Kmayes ,

 

First of all, if it is not necessary to make different actions after every check, then I suggest that you integrate these conditions together to avoid multiple Conditions.

Please check this blog and we could add multiple filters in a Condition.

https://flow.microsoft.com/en-us/blog/build-more-powerful-conditions-in-flows-and-more/

 

Besides, as @Anonymous suggested, if you want to integrate the data in multiple items together and send it via an email, you can refer to the following configuration.

Like:

Spoiler
116.PNG117.PNG

Hope this helps. Feel free to let us know if you have any questions.

 

Best Regards,

Community Support Team _ Barry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

@v-bacao-msft 

 

Hi I have followed your steps but I still seem to have issues The e-mail part you suggest it tries to wrap it in an apply to each, and the append to array variable, not sure what i have done wrong?

 

So all of my columns are like the following example:

Q1 Yes/ No/ Not Applicable

Q2 (If No to Q1) pick reason why option of about eight answers which can be multiple

 

I really appreciate your support with this issue.

 

1.JPG2.JPG

 

Hi @Kmayes ,

 

Because you reference the output of Get items in the Subject, Apply to each is automatically added.

 

PPE Not Used is a field that supports multiple selections, so when you need to call its field value, Apply to each will also be automatically added so that you can traverse the options contained in the field.

 

If you want to deal with this situation, you can refer to the following thread:

https://powerusers.microsoft.com/t5/Building-Flows/Multiple-people-picker-values-in-FLOW/td-p/257018

 

Hope this helps.

 

Best Regards,

Community Support Team _ Barry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

@v-bacao-msft 

 

Thanks for your response does this mean i need to initialise and append a variable for each area?

 

APPEND.JPG

@v-bacao-msft 

 

I've just tried another column and it still doesn't seem to work ??

 

APPEND.JPG

Anonymous
Not applicable

Hello,

 

So the append to array action should be inside of the loop as you determine what you want in the body of the email (the array).

 

What your flow is doing right now is creating the array variable (initializing) with an initial value of null (so it's empty). Then the Append action is taking the empty array variable that you created and adding on to it that same empty array variable. (See the error at the top of your screenshot saying that the issue is self-referencing; it's trying to add itself to itself)

 

In order to get data into the array, the append action needs to be used with the actual data that you want in the array. Notice how in @v-bacao-msft 's example flow above, the "Initialize" action is near the top (since it has to be done at the global level), but the "Append" action is down in the "Apply to Each". Also notice what is being appended (the data being added to the array variable): the data that is wanted to be in the HTML table in the email. 

 

What Barry's flow is doing within the "Apply to each" loop is:

1. Looking at each item in a SharePoint list one at a time

2. Checking to make sure that certain condition(s) is/are met for the current SP item on which the loop is iterating

3. Adding the desired data from the current SP item to the Array variable (which will later become the HTML table in the email).

 

When the conditions are met for an item, data will be added to the array, effectively building your table. When the conditions are not met, nothing will happen and the loop will move on to the next item in the SP list.

 

NOTE: the dynamic content that you put in the Append action block needs to reference only the current item on which the "Apply to each" loop is iterating. Otherwise, if you grab the dynamic content from "Get Items", the flow will automatically put the "Append to Array" action block inside of an "Apply to each" loop since there are multiple items returned in "Get Items" and the dynamic content that you put inside the "Append to Array" can only pull from one item at a time. I'm not sure how Barry's flow in his screenshot didn't automatically create that second "Apply to each" loop, unless he used an expression instead of Dynamic Content. Try it out, and if you run into the issue of that additional "Apply to each" loop being created, let me know and we'll work through creating an expression to reference the desired data.

 

thanks,

Kyle

 

Hi @Kmayes ,

 

@Anonymous has further elaborated on my suggestions, thank you for your help.

 

We need to initialize different variables to store the data we need, and the array variable is used to store the data that needs to be displayed in the HTML table.

 

The String variable is used to append the selected option values in the fields that support multiple selections in a single item so that we can append them to the HTML table.

 

You can take a closer look at the thread I mentioned in my last reply to learn more about ways to deal with similar situations. This helps you understand Data Operations in Flow.

 

Hope that makes sense.

 

Best Regards,

Community Support Team _ Barry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

@Anonymous 

Hi Kyle

So I have made some changes to the flow created and moved the initialise variable to the top level as mentioned under get items, the flow runs but I'm still facing a small issue which i hope with can be easily ironed out. 🙂

 

Email Issue:

  • Only one e-mail is being sent there are two items that meet the condition and this is being recognised in the condition as it shows true for both records, therefore i moved the e-mail and Create HTML into the Apply To Each  as logically I think it should be there. On doing some testing this morning it will now send an e-mail to just the items selected from the condition.
  • However the value of the HTML is not correct, so suppose what I'm asking is where am i going wrong with getting the output value of that item without the apply to each coming back

dig gang flow.JPG

Anonymous
Not applicable

Hello!

 

If you want an email to be sent for each item that meets the conditions, then you are correct in putting the "Create HTML" and "Send Email" in the "Apply to each" loop.

 

However, unless you clear the contents of the array at the END of the loop (after you send each email), you will continue to add data to the array. For example, when the second item meets the criteria, the array (and, thus, the body of the email) will have both the first and the second items' data.

 

You can use the "Set Variable" Action block to set the array to null. See screenshot.SetVariableNullpng.png

 

Unfortunately, I have next to no knowledge about HTML, so if you are having an issue with the output of the HTML table, I can't speak to that. sorry.

 

Can you provide more details about how "the value of the HTML" is not correct?

 

thanks!

 

@Anonymous 

 

That's good to know at least I'm starting to understand its working method more now 🙂

 

Yes that what I noticed it was collecting the variable for each item it looped round so I've managed to solve that with the suggestion you rightly made.

 

The part im having an issue with only now is getting the correct dynamic content into the table, when adding the content i get three options the value one is the one i need as i just want the selected value from that item, however when i apply this it adds apply to each around my append to variable action?

 1.JPG

Many Thanks

Anonymous
Not applicable

The value of the item probably has multiple fields in it, then.

 

Try putting a Compose action block above the "append to variable" block and see if you can pull what you want via dynamic content.

 

If you can't, then just pass in the "Value" item into the compose and run a test of the flow and get the output of the Compose block from your Run History.

 

You should be able to reference the data that you want to pull using an expression like:

 

items('apply to each loop name')?['desired field name']

 

Let's see what the "Value" of "PPE Not Used" looks like, and it will inform how we write the expression.

 

post a screenshot of that Compose output.

 

thanks,

 

@Anonymous 

 

Yes the value is a multiple selection field sorry i should have said, when i put the value item in compose it creates another apply to each and i then cant reference it in the append to array 😞

 

1.JPG

 

 

Anonymous
Not applicable

Can you paste a screenshot of the output of this action block from a previous run?:

2020-05-22_10-44-49.png

if there is too much text in the box to capture in an image, just copy and paste the text into your reply.

 

Thanks,

Kyle

@Anonymous 

 

Does this help at all?

1.JPG

Anonymous
Not applicable

@Kmayes,

 

Using the screenshot that you provided, if you wanted to return the value of the "NegativeVehicleCondition" field (in this case, "Maintenance Issue") while inside the Apply to each loop, your expression would look like this:

 

items('Apply to each 2')?['NegativeVehicleCondition']?['Value']

 

I hope this helps.

 

Thanks,

Kyle

@Anonymous 

 

Morning,

With the expression where should this be placed in a compose action within the loop or directly into the append to array as i have tried both and get errors ??

Anonymous
Not applicable

@Kmayes,

 

It could be in either, but I can't think of a reason why you wouldn't put it straight into the "Append to Array" action (which should be in the loop).

 

Please keep in mind that the issue could be any number of things. And I (or anyone else potentially willing to help) have no way to know what it is without more information.

 

Any time you encounter an error with which you need assistance, I would suggest you provide screenshots with each of your questions showing what you tried and what the output/error was. The more information you can provide, the easier it will be for someone to answer your question quickly and correctly. Please don't make people ask for screenshots every time you encounter a new error/problem.

 

The users in this community are incredibly willing to help each other by teaching from their experience. But they are not (by and large) here to build people's flows for them. You have to be as willing to learn as they are to teach. Even when you have someone helping you on an issue, as you're working through it, don't stop searching Google and these forums to find information that will help you better understand the situation you're dealing with.

 

 

Thanks,

Kyle

 

Helpful resources

Announcements

Announcing the MPPC's Got Power Talent Show at #MPPC23

Are you attending the Microsoft Power Platform Conference 2023 in Las Vegas? If so, we invite you to join us for the MPPC's Got Power Talent Show!      Our talent show is more than a show—it's a grand celebration of connection, inspiration, and shared journeys. Through stories, skills, and collective experiences, we come together to uplift, inspire, and revel in the magic of our community's diverse talents. This year, our talent event promises to be an unforgettable experience, echoing louder and brighter than anything you've seen before.    We're casting a wider net with three captivating categories:  Demo Technical Solutions: Show us your Power Platform innovations, be it apps, flows, chatbots, websites or dashboards... Storytelling: Share tales of your journey with Power Platform. Hidden Talents: Unveil your creative side—be it dancing, singing, rapping, poetry, or comedy. Let your talent shine!    Got That Special Spark? A Story That Demands to Be Heard? Your moment is now!  Sign up to Showcase Your Brilliance: https://aka.ms/MPPCGotPowerSignUp  Deadline for submissions: Thursday, Sept 28th    How It Works:  Submit this form to sign up: https://aka.ms/MPPCGotPowerSignUp  We'll contact you if you're selected. Get ready to be onstage!  The Spotlight is Yours: Each participant has 3-5 minutes to shine, with insightful commentary from our panel of judges. We’re not just giving you a stage; we’re handing you the platform to make your mark.     Be the Story We Tell: Your talents and narratives will not just entertain but inspire, serving as the bedrock for our community’s future stories and successes.    Celebration, Surprises, and Connections: As the curtain falls, the excitement continues! Await surprise awards and seize the chance to mingle with industry experts, Microsoft Power Platform leaders, and community luminaries. It's not just a show; it's an opportunity to forge connections and celebrate shared successes.    Event Details:  Date and Time: Wed Oct 4th, 6:30-9:00PM   Location: MPPC23 at the MGM Grand, Las Vegas, NV, USA  

September User Group Success Story: Reading Dynamics 365 & Power Platform User Group

The Reading Dynamics 365 and Power Platform User Group is a community-driven initiative that started in September 2022. It has quickly earned recognition for its enthusiastic leadership and resilience in the face of challenges. With a focus on promoting learning and networking among professionals in the Dynamics 365 and Power Platform ecosystem, the group has grown steadily and gained a reputation for its commitment to its members!   The group, which had its inaugural event in January 2023 at the Microsoft UK Headquarters in Reading, has since organized three successful gatherings, including a recent social lunch. They maintain a regular schedule of four events per year, each attended by an average of 20-25 enthusiastic participants who enjoy engaging talks and, of course, pizza.   The Reading User Group's presence is primarily spread through LinkedIn and Meetup, with the support of the wider community. This thriving community is managed by a dedicated team consisting of Fraser Dear, Tim Leung, and Andrew Bibby, who serves as the main point of contact for the UK Dynamics 365 and Power Platform User Groups.   Andrew Bibby, an active figure in the Dynamics 365 and Power Platform community, nominated this group due to his admiration for the Reading UK User Group's efforts. He emphasized their remarkable enthusiasm and success in running the group, noting that they navigated challenges such as finding venues with resilience and smiles on their faces. Despite being a relatively new group with 20-30 members, they have managed to achieve high attendance at their meetings.   The group's journey began when Fraser Dear moved to the Reading area and realized the absence of a user group catering to professionals in the Dynamics 365 and Power Platform space. He reached out to Andrew, who provided valuable guidance and support, allowing the Reading User Group to officially join the UK Dynamics 365 and Power Platform User Groups community.   One of the group's notable achievements was overcoming the challenge of finding a suitable venue. Initially, their "home" was the Microsoft UK HQ in Reading. However, due to office closures, they had to seek a new location with limited time. Fortunately, a connection with Stephanie Stacey from Microsoft led them to Reading College and its Institute of Technology. The college generously offered them event space and support, forging a mutually beneficial partnership where the group promotes the Institute and encourages its members to support the next generation of IT professionals.   With the dedication of its leadership team, the Reading Dynamics 365 and Power Platform User Group is poised to continue growing and thriving! Their story exemplifies the power of community-driven initiatives and the positive impact they can have on professional development and networking in the tech industry. As they move forward with their upcoming events and collaborations with Reading College, the group is likely to remain a valuable resource for professionals in the Reading area and beyond.  

A Celebration of What We've Achieved--And Announcing Our Winners

As the sun sets on the #SummerofSolutions Challenge, it's time to reflect and celebrate! The journey we embarked upon together was not just about providing answers – it was about fostering a sense of community, encouraging collaboration, and unlocking the true potential of the Power Platform tools.   From the initial announcement to the final week's push, the Summer of Solutions Challenge has been a whirlwind of engagement and growth. It was a call to action for every member of our Power Platform community, urging them to contribute their expertise, engage in discussions, and elevate collective knowledge across the community as part of the low-code revolution.   Reflecting on the Impact As the challenge ends, it's essential to reflect on the impact it’s had across our Power Platform communities: Community Resilience: The challenge demonstrated the resilience of our community. Despite geographical distances and diverse backgrounds, we came together to contribute, learn, and collaborate. This resilience is the cornerstone of our collective strength.Diverse Expertise: The solutions shared during the challenge underscore the incredible expertise within our community. From intricate technical insights to creative problem-solving, our members showcased their diverse skill sets, enhancing our community's depth.Shared Learning: Solutions spurred shared learning. They provided opportunities for members to grasp new concepts, expand their horizons, and uncover the Power Platform tools' untapped potential. This learning ripple effect will continue to shape our growth. Empowerment: Solutions empowered community members. They validated their knowledge, boosted their confidence, and highlighted their contributions. Each solution shared was a step towards personal and communal empowerment. We are proud and thankful as we conclude the Summer of Solutions Challenge. The challenge showed the potential of teamwork, the benefit of knowledge-sharing, and the resilience of our Power Platform community. The solutions offered by each member are more than just answers; they are the expression of our shared commitment to innovation, growth, and progress!     Drum roll, Please... And now, without further ado, it's time to announce the winners who have risen above the rest in the Summer of Solutions Challenge!   These are the top community users and Super Users who have not only earned recognition but have become beacons of inspiration for us all.   Power Apps Community:  Community User Winner: @SpongYe Super User Winner: Pending Acceptance Power Automate Community:  Community User Winner: @trice602 Super User Winner: @Expiscornovus  Power Virtual Agents Community: Community User Winner: Pending AcceptanceSuper User: Pending Acceptance Power Pages Community: Community User Winner: @OOlashyn Super User Winner: @ChristianAbata   We are also pleased to announced two additional tickets that we are awarding to the Overall Top Solution providers in the following communities:    Power Apps: @LaurensM   Power Automate: @ManishSolanki    Thank you for making this challenge a resounding success. Your participation has reaffirmed the strength of our community and the boundless potential that lies within each of us. Let's keep the spirit of collaboration alive as we continue on this incredible journey in Power Platform together.Winners, we will see you in Vegas! Every other amazing solutions superstar, we will see you in the Community!Congratulations, everyone!

September featured user group leader

 Ayonija Shatakshi, a seasoned senior consultant at Improving, Ohio, is a passionate advocate for M365, SharePoint, Power Platform, and Azure, recognizing how they synergize to deliver top-notch solutions. Recently, we asked Ayonija to share her journey as a user group leader, shedding light on her motivations and the benefits she's reaped from her community involvement.      Ayonija embarked on her role as a user group leader in December 2022, driven by a desire to explore how the community leveraged various Power Platform components. When she couldn't find a suitable local group, she decided to create one herself!    Speaking about the impact of the community on her professional and personal growth, Ayonija says, "It's fascinating to witness how everyone navigates the world of Power Platform, dealing with license constraints and keeping up with new features. There's so much to learn from their experiences.:        Her favorite aspect of being a user group leader is the opportunity to network and engage in face-to-face discussions with fellow enthusiasts, fostering deeper connections within the community. Offering advice to budding user group leaders, Ayonija emphasized the importance of communication and consistency, two pillars that sustain any successful community initiative.      When asked why she encourages others to become user group leaders, Ayonija said, "Being part of a user group is one of the best ways to connect with experienced professionals in the same field and glean knowledge from them. If there isn't a local group, consider starting one; you'll soon find like-minded individuals."      Her highlight from the past year as a user group leader was witnessing consistent growth within the group, a testament to the thriving community she has nurtured. Advocating for user group participation, Ayonija stated, "It's the fastest route to learning from the community, gaining insights, and staying updated on industry trends."   Check out her group: Cleveland Power Platform User Group

An MPPC23 Invitation from Charles Lamanna, CVP of Microsoft Business Applications & Platform

Hear from Corporate Vice President for Microsoft Business Applications & Platform, Charles Lamanna, as he looks ahead to the second annual Microsoft Power Platform Conference from October 3rd-5th 2023 at the MGM Grand in Las Vegas.Have you got your tickets yet? Register today at www.powerplatformconf.com  

August new user groups and September user group events

We wanted to take the time to celebrate and welcome the new user groups that have joined our community. Along with that take a look at the event that might be happening near you or virtually.   Please welcome:  Biz Apps Community User Group - Power Platform Community (microsoft.com) This user group is dedicated for all community members of all skill levels to learn how to get the most out of their community experience. East Michigan Power Platform User Group - Power Platform Community (microsoft.com) This is hopefully the beginning of a community, covering eastern Michigan, built around the Power Platform.  Biz Apps Community User Group This user group is dedicated for all community members of all skill levels to learn how to get the most out of their community experience.     Events to checkout:   In-Person: September 2023 Hybrid Philadelphia Dynamics 365 & Power Platform User Group MeetDynamics 365 and Power Platform Physical Meetup Hyderabad Power Platform User Group Meetup - Sept 2023 (In-Person)Manchester September 2023 In Person Meeting Virtual: Everything Dataverse, Do you know that Dataverse is more than just a Database!POWER PLATFORM MONTHLY DIGEST- SEPTEMBERBaltic Summit 2023PL-900 Power Platform Fundamentals TrainingHR and L&D transformation through Power PlatformDynamics 365 Marketing Experience User Groups - Use Cases and NetworkingPower Platform and Dual Write from Dynamics 365 F&O PerspectiveANZ D365 FinOps Team September 2023 meetup

Users online (3,918)