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

Flow from rows from a table

Hi,

I find it difficult to explain wat i want to do but I still try.
I also have an example of what I have made now, but it does not do what I want that is to do.

 

I want to create a Flow that looks at a table.

For every line where column B is 2019 (this year) AND column C is period 4 (previous period) AND has a 1 in a ruleset, an email is sent where i in the body a choice can be made.

 I hope sombody can help me☺

 

Like As:
1001 = 2019 + 4 (column A + B + C)
Has a 1 with ruleset1 and has a 1 with ruleset 3
Then in the mail (Body) column A + B + C and column L + M + R AND column W

 

This is the table:

Flow2.png

 

This is the flow for so far but it is very bad i think.

Flow1.png

16 REPLIES 16
efialttes
Community Champion
Community Champion

@frixel 

You almost got it!

In your "Condition 2" action block, you currently have one evaluation rule (Year is equal to 2019). You can expand this condition, adding more evaluation rules by clicking on "Add" button. In the advanced condition builder, this can be achieved by adding a "rule".

So you can add (Period is equal to 4). And you can link all two or more evaluation rules either with and AND operator, with an OR operator. Y if you want evaluation rule#1 AND evaluation rule#2 to be TRUE, then you use AND operator. If you want to evaluate if either evaluation rule#1 OR evaluation rule#2 are TRUE, then you use OR operator.

 

Now, the tricky part: what I understood is that you want also to evaluate if any of the rulesets is set to one (on your screenshot I see 8 rulesets). We can call this whole evaluation rule#3; and split it into subevaluation rules (one per ruleset). In the advanced condition builder, this can be achieved by adding a "group" of rules

 

So the whole expression shall be:

(evaluation rule#1) AND (evaluation rule#2) AND (evaluation rule#3)

And the way to declare evaluation rule#3 is:

(evaluation subrule#3.1 OR evaluation subrule#3.2 OR ... OR evaluation subrule#3.8)

 

The whole expression shall look like:

(evaluation rule#1) AND (evaluation rule#2) AND ((evaluation subrule#3.1 OR evaluation subrule#3.2 OR ... OR evaluation subrule#3.8))

 

THere is an excellent description of the advanced condition builder here:

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

 

If you find confusing adding all this staff to your single "Condition 2" action block, you can use nested Condition action blocks.

Step#1: in "Condition 2" action block you evaluate (evaluation rule#1) AND (evaluation rule#2) 

Step#2: add a "Condition 3" action block inside "Condition 2" true branch

Step#3: in "Condition 3" action block you evaluate (evaluation subrule#3.1 OR evaluation subrule#3.2 OR ... OR evaluation subrule#3.8)

Step#4: move "Send an Email" action block inside the "Condition 3" true branch

Hope this helps

Did I make your day? If so, mark my response as 'Solution' !!!

También escribo sobre Power Automate en este Blog y en Twitter

Hi @efialttes 

 

Thanks for your quick response.

 

I try to rebuild as you say but i dont understand it fully.

 

You mean like this?

 

Flow1.png

That's the idea! Did it work?
Strictly speacking you do not need the "get a row" inside the loop, since it is already iterating over all the rows in the excel. But if current design works, then we can live with it unless the performance is too low

Did I make your day? If so, mark my response as 'Solution' !!!

También escribo sobre Power Automate en este Blog y en Twitter

Hi @efialttes 

 

No it sends no mails

 

Flow2.png

In this same screen, can you dobleclick on "get a row" and verify if the output is one of the rows you are looking for? Please note this is the result of one iteration, the evaluation failed so no email was sent for it.
You should be able to inspect the rest of the iterations also, let me find a screenshot to show you how to do it

Did I make your day? If so, mark my response as 'Solution' !!!

También escribo sobre Power Automate en este Blog y en Twitter

hi @efialttes 

 

I don't understand it that way.

As you mentioned, I have not yet created condition 3 because I do not understand where to insert it.

 

To return to your last question, it is true that values ​​have been found, but why is there no mail sent?

(the intention is that if 1 in, for example, ruleset 1 is found, a mail is sent with the value from the column A + B + C)

Flow3.png

Hi

On the same screen you shared to me (the one that shows last execution results) you can verify the number of iterations (that is, the number of rows evaluated) in the "Apply to each" action block:

flow_iteration_inspection.png

 

Whenever any of the iterations fail, you will see a red icon on top right of the "Apply to each" action block. If all iterations succeded, then this icon will turn green.

You can inspect the iteration result one by one, just click on "Next>".

In the iteration example you shared, execution succeded. However, no email was not sent for that row because the evaluation of the condition returned 'false'. You can inspect the iterations one by one and verify if condition evaluation from any of the iterations returned 'true'. If so, then one email should be sent per iteration whose condition returned 'true'. If ten rows evaluation returned true, then 10 emails sent. If 0 rows evaluation returned true, then 0 emails sent.

Hope this helps

Did I make your day? If so, mark my response as 'Solution' !!!

También escribo sobre Power Automate en este Blog y en Twitter

No, sorry, I don't understand.

I apologize for keeping you working.

The condition is that there is a 1 in a ruleset and so he must send the mail.

 

Flow4.png

@frixel 

Thanks for shareing the info. On your screenshot you will see 8 iterations occur (your excel table has 8 rows, right?), and since the icon on the top right corner is in green, all of them succeded (meaning no execution error occured).

If no email was sent, this is because the flow evaluated the condition 8 times but all of them returned false.

From your previous posts it seems that at least one of the rows should return true, so let's see if we find the problem.

Can you open the editor and share a screenshot on how you defined "Get a row" inputs?

Also, in the same editor, how did you define the condition? I mean, did you use the outputs of "Get row"?

Did I make your day? If so, mark my response as 'Solution' !!!

También escribo sobre Power Automate en este Blog y en Twitter

@frixel 

I think we got it!

Edit the condition, and instead of 2019 use the following expression:

string(2019)

 

flow_excel_3.png

You need to do the same with:

4 -> string(4)

1 -> string (1)

 

The reason for this is the following: when flow reads the Excel rows, it is most likely considering their column values as strings (text) instead of integers (numbers). So we need in the evaluation rules to compare to strings.

 

I did some testing by myself replicating your excel (I simplified it a bit, but the concept is the same), and it works!

flow_excel.png

 

So this is the first iteration output:

flow_excel_4.png

And this is the second iteration output:

flow_excel_5.png

 

Please also note you do not need the "Get row" action block if you select the condition evauation entries in this way:

flow_excel_2.png

Did I make your day? If so, mark my response as 'Solution' !!!

También escribo sobre Power Automate en este Blog y en Twitter

Hi @efialttes 

Okay, great now I come a long way.
I just wonder why you also have a "compose" in it?

 

My next step is to adjust the Flow because there must be a different text in the mail for each rule set.

It is therefore possible that the mail should contain text from either ruleset1 and ruleset3 or ruleset1 and ruleset4.(depending on where the 1 is in the rulesets)

@frixel 

You can forget the "Compose" action block, I add it for troubleshooting purposes

Since "Condition" action block does not show you the evaluation result of each independent rule, but the overall result, I add each input and each evaluation expression inside a Compose action and this way I can easily inspect them. As I said, very useful for troubleshooting purposes.

 

REgarding email text, not sure I understood your requirements:


 

My next step is to adjust the Flow because there must be a different text in the mail for each rule set.

It is therefore possible that the mail should contain text from either ruleset1 and ruleset3 or ruleset1 and ruleset4.(depending on where the 1 is in the rulesets)


You mean you want to show a different text depending on which ruleset is set to 1?

Can you provide 3-4 examples from the excel you shared? I mean row-> expected text

Hope this helps

Did I make your day? If so, mark my response as 'Solution' !!!

También escribo sobre Power Automate en este Blog y en Twitter

Hi @efialttes .

 

Like As:
example: store 1001 (mail is 1001@mail.com) Has a 1 with ruleset1 and has a 1 with ruleset 3

Then in the mail (Body) custom text and result from column A + B + C(=linked to ruleset1) and custom text and result column L + M + R(=linked to ruleset2) 

But the next rule in tje Excel table store 1002 has example ruleset 3

 

I hope you understand what I mean.

 

 

@frixel 

 


example: store 1001 (mail is 1001@mail.com) Has a 1 with ruleset1 and has a 1 with ruleset 3

Then in the mail (Body) custom text and result from column A + B + C(=linked to ruleset1) and custom text and result column L + M + R(=linked to ruleset2) 

in order to add the number value stored on columns A, B, C you can invoke twice the add() function since it only accepts two arguments:

add(add(int(item()?['Number']),int(item()?['Year'])),int(item()?['Period']))

 

You can combine it with concat() and if() funtions to display additional text dependant on an evaluation rule:

 

if(equals(item()?['Ruleset_1'],'1'),concat('This text is added when ruleset_1 equals to 1 : ',add(add(int(item()?['Number']),int(item()?['Year'])),int(item()?['Period']))),'')

 

I am assuming Column A is 'Number', column B is 'Year' and column C is Period' but I guess you are referring to other columns. Please note I am using int() in order to ensure texts are translated into numbers.

 

You can add a similar expression to evaluate if ruleset_3 is 1 and if so print a text and the sum of L, M, and R

 

But the next rule in tje Excel table store 1002 has example ruleset 3

 

I hope you understand what I mean.

 

 


 

Did I make your day? If so, mark my response as 'Solution' !!!

También escribo sobre Power Automate en este Blog y en Twitter

Hi @efialttes 

Oh dear i make indead a mistake.

 

example: store 1001 (mail is 1001@mail.com) Has a 1 with ruleset1 and has a 1 with ruleset 3

Then in the mail (Body) custom text and result from column A + B + C(=linked to ruleset1) and custom text and result column L + M + R(=linked to ruleset2) 

Ruleset 1 is linked to colum N+O+P

 

In your example you mean that the expession is exacly as here or must i changed it?

if(equals(item()?['Ruleset_1'],'1'),concat('This text is added when ruleset_1 equals to 1 : ',add(add(int(item()?['Number']),int(item()?['Year'])),int(item()?['Period']))),'')

 

When i fil it so in the expression the Flow fails.

 

Flow1.png

 

 

hi @efialttes 

 

can you help me to solve the last part?

I cannot figure out what to enter in this line.

Do I enter this exactly like this? if (equals (item ()? ['Ruleset_1'], '1'), concat ('This text is added when ruleset_1 equals to 1:', add (add (int (item ()? ['Number']) , int (item ()? ['Year'])), int (item ()? ['Period']))), '')

or must i set something else with the parts ['Number'] ['Year'] and ['Period']?

 

 

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,559)