Hi there,
I have been trying to separate my Html Table based on 'Expiration Dates', the picture below show all of the dates lump together (which is not what I want).
This is my filter array after my Html Table, is there something wrong?
Please help me out, thanks!
Solved! Go to Solution.
HI , @2201559
Thanks for your response! In my thought , you may not need to use the "Apply to each" action. If you raw data is like this(I created the data in my Compose action):
I create a test flow , this is the result :
The Filter array and create html table action:
item()?['Expiration Date']
addDays(utcNow(),-30,'yyyy-MM-ddT00:00:00.000Z')
item()?['Item Code']
item()?['Chinese Description']
item()?['English Description']
The send email action:
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 , @2201559
You can use this expression in the "Filter array" action:
@equals(replace(split(item()?['Html Table'], '</h1>')[0], '<h1>', ''), formatDateTime(split(item()?['Expiration Date'], 'T')?[0], 'dd/MM/yyyy'))
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
I input your expression in my Filter Array, but how do I narrow it down to getting only one of the dates?
For example, I only want 17 May 2024 information and remove out the rest
Hi , @2201559
Thanks for your response! If you want to get the Date in loop , you can refer to this test flow:
split(items('Apply_to_each')?['Expiration Date'], 'T')?[0]
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 did managed to split the dates but I want to get both the Expiration Date and Html Table data.
The thing I am trying to get is the 17th May grey circle (picture below) and not the rest of the others.
Is there a way to do so?
Hi , @2201559
This expression is used to get the Expiration Date:
split(items('Apply_to_each')?['Expiration Date'], 'T')?[0]
You can use this expression to get the Date in Html Table:
replace(split(items('Apply_to_each')?['Html Table'], '</h1>')[0], '<h1>', '')
If I misunderstand what you mean, you can describe your needs and your expected outcomes in detail so that we can better help you. 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
Sorry if I was not clear in my message, I appreciate your replies a lot
Currently I am receiving this Output in my email, which shows all the Expiration Date (both seen on my Black Header and one of the column of my Html Table) in a single email (not what I want)
The Output that I want is when it is about 14 days before my Expiration Date of this specific item, to send me that email, which only contains the information for that. Below is my expected outcome:
Situation: Today is 1st May and the Expiration Date of xxx items is 15th May (14 days later)
Expected outcome: A reminder email will be sent today (1st May) and contains information of only items that have the Expiration Date on the 15th May
Expected Email to look like (pardon my poor writing)
If you need more information, do let me know @v-yueyun-msft
Hi, @2201559
Thanks for your response! According to your description, this is my understanding for your need:
If this , you can add the filter condition here:
@and(equals(replace(split(item()?['Html Table'], '</h1>')[0], '<h1>', ''), formatDateTime(split(item()?['Expiration Date'], 'T')?[0], 'dd/MM/yyyy')),
equals( split(item()?['Expiration Date'], 'T')?[0] , addDays(utcNow(),14,'yyyy-MM-dd')))
The result is as follows in my side:
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 tried your expression but noting came out of it?
My Input:
My Output with your expression:
I not too sure what went wrong, do you have the expression when editing in the 'Basic Mode' instead of the 'Advance mode' for the Filter Array part?
Hi , @2201559
I put this code in the advanced mode :
And your output is blank due to today is 2024/05/21, it will filter only the [Expiration Date] =2024/06/04.
Best Regards,
Yueyun Zhang
Hi @v-yueyun-msft ,
I fixed the Output and it worked.
However, I got one last issue which is the same email has been sent to me multiple times (many duplicates)
I not too sure where I went wrong, this is the rest of my flow
Left output is ComposeStyle while Right output is Compose
Hi , @2201559
According to your screeshot, you loop the [value] to send the email. As you have filtered the array above, in my thought you do not need to use the "Apply to each" to loop to send the email. You can directly send the email after the "Compose Style" action.
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
It worked out but now my Condtion for the email can be used? The error keeps appearing to be the value is not a type string but an array? Not too sure what it means
The output on the right is
Hi , @2201559
In my understanding , you do not need to add this condition due to it has been added in the "Filter array" action:
@and(equals(replace(split(item()?['Html Table'], '</h1>')[0], '<h1>', ''), formatDateTime(split(item()?['Expiration Date'], 'T')?[0], 'dd/MM/yyyy')),
equals( split(item()?['Expiration Date'], 'T')?[0] , addDays(utcNow(),14,'yyyy-MM-dd')))
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 tried without the condition, however the issue I have now is that it is unable to 'Test Run Automatically'
Can I still add the Condtion function to ensure that the email is only sent if Expiration Date of the item is 14 days ahead of today's date?
Or is there no other way around it @v-yueyun-msft
Best regards,
2201559
Hi @v-yueyun-msft,
I not too sure why but I kept receiving an error with your expression after trying to run it a few time
My Input:
Error received
The execution of template action 'Filter_array_3' failed: The evaluation of 'query' action 'where' expression '@and(equals(replace(split(item()?['Html Table'], '</h1>')[0], '<h1>', ''), formatDateTime(split(item()?['Expiration Date'], 'T')?[0], 'dd/MM/yyyy')),
equals(split(item()?['Expiration Date'], 'T')?[0] , addDays(utcNow(),14,'yyyy-MM-dd')))' failed: 'In function 'formatDateTime', the value provided for date time string '' was not valid. The datetime string must match ISO 8601 format.'.
Hi , @2201559
This error code means that the ['Expiration Date'] contains the blank value in your array.
You can try to use this expression:
@and(
not(equals(length(replace(split(item()?['Html Table'], '</h1>')[0], '<h1>', '')),0)),
equals(replace(split(item()?['Html Table'], '</h1>')[0], '<h1>', ''), formatDateTime(split(item()?['Expiration Date'], 'T')?[0], 'dd/MM/yyyy')),
equals( split(item()?['Expiration Date'], 'T')?[0] , addDays(utcNow(),14,'yyyy-MM-dd'))
)
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
Oh I see, but now I not sure why the Output is empty?
I did change your expression from 14 to -14 (since I wanted 14 days before the current date), could that be the reason?
The expression I used is
@and(not(equals(length(replace(split(item()?['Html Table'], '</h1>')[0], '<h1>', '')),0)),
equals(replace(split(item()?['Html Table'], '</h1>')[0], '<h1>', ''), formatDateTime(split(item()?['Expiration Date'], 'T')?[0], 'dd-MM-yyyy')),
equals( split(item()?['Expiration Date'], 'T')?[0] , addDays(utcNow(),-14,'yyyy-MM-dd')))
Hi, @2201559
Thanks for your response! If you update the addDays functions' parameter to -14.
For example ,today is 2024/5/23 , it will only filter the Date = 2024/5/9.
Best Regards,
Yueyun Zhang
Sorry but I keep getting empty Output, not too sure why?
I used this
@and(
not(equals(length(replace(split(item()?['Html Table'], '</h1>')[0], '<h1>', '')),0)),
equals(replace(split(item()?['Html Table'], '</h1>')[0], '<h1>', ''), formatDateTime(split(item()?['Expiration Date'], 'T')?[0], 'dd/MM/yyyy')),
equals( split(item()?['Expiration Date'], 'T')?[0] , addDays(utcNow(),-14,'yyyy-MM-dd')))
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!
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
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.
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