cancel
Showing results for 
Search instead for 
Did you mean: 
Reply

Making given parameter containing both string and an integer into a condition

Hi guys, I'm looking into how to make a given data from an excel sheet into a condition in a Condition connector. The below screenshot shows set of data in the excel sheet:

image.png

The screenshot illustrates the data in an excel sheet with various alert types: "Red 1", "Red 2", "Red 3", "Red 4", "Red 5". Based on what I have understood, for instance, "Red 1" in the excel sheet contains the word "Red" and a digit "1". I'm looking into how to make the parameter "Red 1" which contains a combination of a string and an integer into a condition in a Condition connector, illustrated in the below screenshot:

image.pngWhen using the condition connector, I understand that if I want to make an integer type of data into a condition in the Condition connector, I would need to format it into an integer. For example, the code would be:

int(items('Apply_to_each')?['Example']). Likewise, for a text, I would need to format it into a string using the following code:

items('Apply_to_each')?['Example'].

 

In this scenario, the data I'm using for example, "Red 1" contains both a string and an integer from [Alert Type]. I want to make it into a condition in the Condition connector such that if [Alert Type] is < 4, [Alert Type] would focus on parameters of "Red 1", "Red 2" and "Red 3" according to the condition, then go to the next step.

 

Therefore, in summary:

Finding out what to put in the Condition connector to make the data in [Alert Type] from the excel sheet illustrated from the above screenshot into a condition in the Condition connector, putting into consideration that the data in [Alert Type] have both string and integer elements.

 

I would appreciate any techniques or methods available! Thank you!

 

47 REPLIES 47
v-yueyun-msft
Community Support
Community Support

Hi , @Del-Dev 

According to your description, do you mean you want to compare the [Alert Type] < "Red 4".

You can try to use this expression in your condition left pane:
int( split( items('Apply_to_each')?['Alert Type'] , ' ')?[1] )

 

Condition : Less Then

 

Right Pane :

int('4')

vyueyunmsft_0-1717573442008.png

 

 

If this reply can help you , you can click mark this reply as solution (Accept solution) which can help more people, thanks in advance! 

 

Best Regards,

Yueyun Zhang

 

 

Hi @v-yueyun-msft,

Thank you for your response! I would like to clarify with you regarding about the code: 

int( split( items('Apply_to_each')?['Alert Type'] , ' ')?[1]). What does this code mean in layman terms? I find the code very interesting and I would like to find out more about it.

HI , @Del-Dev 

(1) The "items('Apply_to_each')?['Alert Type'] " means each value in your ['Alert Type']. For example , "Red 1", "Red 2".

 

(2) The " split( items('Apply_to_each')?['Alert Type'] , ' ') " is to split the Text by space:
"Red 1" ===> ["Red","1"]

"Red 2"===> ["Red","2"]

"Red 13"===> ["Red","13"]

 

(3)The "split( items('Apply_to_each')?['Alert Type'] , ' ')?[1]" is used to get the second position value in the array.

["Red","1"] ===> ["1"]

["Red","2"]===>["2"]

 ["Red","13"] === >["13"]

 

(3)The "int( split( items('Apply_to_each')?['Alert Type'] , ' ')?[1])" is used to convert the Text to integer:
["1"] === > 1

["2"] ====>2 

["13"] ====> 13

 

If this reply can help you , you can click mark this reply as solution (Accept solution) which can help more people, thanks in advance! 

 

Best Regards,

Yueyun Zhang

 

 

Hi @v-yueyun-msft,

Just out of curiosity, previously the data from [Alert Type] is in this format for e.g. "Red 2" where there is a space between the 'Red' and the '2'. What if the data is presented in the format such that there is no space in between them for e.g. "Red2"? Would there be any changes from the expression you have suggested for the Condition connector above?

Hi, @Del-Dev 

You can directly use this expression :
 items('Apply_to_each')?['Alert Type']

 

If this reply can help you , you can click mark this reply as solution (Accept solution) which can help more people, thanks in advance! 

 

Best Regards,

Yueyun Zhang

Hi @v-yueyun-msft,

So similar to the above post, if I would like to compare the [Alert Type] < "Red4" (with no spacing between 'Red' and '4'), then the expression for the Condition Connector would be as follows:

For the left pane

int(items('Apply_to_each')?['Alert Type'])

 

For the right pane

int('4')

 

Please correct me if I'm wrong.

Hi , @Del-Dev 

Please try :

For the left pane

int( split( items('Apply_to_each')?['Alert Type'] ,'Red')[1] )

 

For the right pane

int('4')

 

If this reply can help you , you can click mark this reply as solution (Accept solution) which can help more people, thanks in advance! 

 

Best Regards,

Yueyun Zhang

 

Hi @v-yueyun-msft,

Thank you for the suggestion! I would like to ask if the condition in the Condition connector, [Alert Type] < "Red4" is true and the expected output would be "Red1", "Red2" and "Red3", how do I print it in the email body of the Email connector? Do I just put the expression you have suggested, int( split( items('Apply_to_each')?['Alert Type'] ,'Red')[1] ) into the email body of the Email connector so that I could print "Red1", "Red2" and "Red3" and send it to the recipients? 

Hi , @Del-Dev 

If you want to send all the Color which < "Red4" , you can not use the condition action.

You need to use the "Filter Array" action. Due to the "Apply to each" action is to loop for each value. it will only get one of the Color in each loop!

 

Best Regards,

Yueyun Zhang

Hi @v-yueyun-msft

Thank you for the suggestions! Correct, my intention is to use the 'Apply to each' connector to loop each value from each row and in addition, I have email addresses in each row as well. Therefore, I would like to send "Red1" to email recipient 1 and "Red2" to email recipient 2 and so on. Therefore, in order to send the "Red1" and "Red2" to each email recipients respectively, does putting the expression you have suggested, int( split( items('Apply_to_each')?['Alert Type'] ,'Red')[1] ) into the email body of the Email connector and send it to the recipients still applies?

Hi , @Del-Dev 

Yes , if you want to send the email to each people , like this:
Red1 ---> Person 1

Red2 ---> Person 2

 

You can use this expression in your email body:
items('Apply_to_each')?['Alert Type']

 

The " int( split( items('Apply_to_each')?['Alert Type'] ,'Red')[1] )" just use to judge in the condition action which means the value in your Text.

For example:
Red1    ----> 1

Red12  ----->12

 

And the "items('Apply_to_each')?['Alert Type']" means the each loop data in your Apply to each action, which is the "Red1", "Red2" and so on.

 

If this reply can help you , you can click mark this reply as solution (Accept solution) which can help more people, thanks in advance! 

 

Best Regards,

Yueyun Zhang

 

 

Hi @v-yueyun-msft,

Thank you for the suggestions! The suggestion helped me accomplished a part of my objectives. In the previous post:

" If you want to send all the Color which < "Red4" , you can not use the condition action.

You need to use the "Filter Array" action. Due to the "Apply to each" action is to loop for each value. it will only get one of the Color in each loop!"

 

From this, you mentioned that I cannot use the Condition action and I have to use a "Filter Array" to get all the colours in each loop. Therefore, what it means is that I need to replace the Condition action into a "Filter Array" right? If that is the case, do I still need to use the "Apply to each" action before the "Filter Array" action in order to get all the colours in each loop? 

Hi, @Del-Dev 

Yes , if you just want to send one email and contains the data which < "Red4". You do not need to use this condition action, you can use the Filter array action instead.

For example , this is my test flow and the result:

vyueyunmsft_0-1717651929683.png

You can refer to this:

vyueyunmsft_1-1717652020833.png

int( split( item()?['Alert Type'] , 'Red')?[1] )
int('4')
item()?['Alert Type']

 

 

If this reply can help you , you can click mark this reply as solution (Accept as solution) which can help more people, thanks in advance! 

 

Best Regards,

Yueyun Zhang

 

 

Hi @v-yueyun-msft,

In the screenshot from the above post:

DelDev_0-1717661639048.png

What is the expression for the part annotated by the red circle? 

 

Hi , @Del-Dev 

This is directly select the "output" of "Create HTML table" in dynamic content.

vyueyunmsft_0-1717661902097.png

 

 

If this reply can help you , you can click mark this reply as solution (Accept solution) which can help more people, thanks in advance! 

 

Best Regards,

Yueyun Zhang

 

 

Hi @v-yueyun-msft,

I see I see! So, what is the usage of the "Create HTML Table"? Does it help to display the "Alert Type" as a bolded header and display the "Red1", "Red2" and "Red3" in the email body? And is it compulsory to use "Create HTML Table" to achieve this?

Hi , @Del-Dev 

Using the "Create HTML Table" is to make the presentation more intuitive. Of course, if you want to display the text directly in your email, you can do that also!

 

For your question: Does it help to display the "Alert Type" as a bolded header and display the "Red1", "Red2" and "Red3" in the email body?

Answer: Yes, you are right!😀

 

If you want to show the "Red1,Red1,Red2,Red3" in email body.

You can refer to :

vyueyunmsft_0-1717664691558.png

So the result is as follows in my email body:

vyueyunmsft_1-1717664750027.png

 

 

If this reply can help you , you can click mark this reply as solution (Accept solution) which can help more people, thanks in advance! 

 

Best Regards,

Yueyun Zhang

 

 

Hi @v-yueyun-msft,

That's coool! So if I want to display the text directly in my email, do I just put the expression: item('Filter_array')?['Alert Type'] in my email body while excluding the "Create HTML Table" to display "Red1", "Red2" and "Red3" in the email?

Hi , @Del-Dev 

No , you need to use the Select action to generate an array like this:

["Red1","Red2","Red3","Red13"]

 

And then use the Join() function in your email body , i have created a test flow above .

vyueyunmsft_0-1717667004945.png

This is the join() function return:

vyueyunmsft_1-1717667036262.png

 

If this reply can help you , you can click mark this reply as solution (Accept as solution) which can help more people, thanks in advance! 😀

 

Best Regards,

Yueyun Zhang

 

 

 

 

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