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

Sorting Column in HTML Table with Blank Fields at the Bottom

Hi everyone,

 

I am working on a new flow that pulls a list of tasks from a SharePoint List, converts it into an HTML table and then automatically sends this list to a group chat on Microsoft Teams. I have sorted my column in the HTML table based on due date for the taskings. However, the issue I am encountering is that any fields in my due date column that are blank (as they do not have a due date) are appearing at the top of my HTML table. However, I want them to appear at the bottom of my HTML table with all items with a due date placed in ascending order at the top of my HTML table. Does anyone have any thoughts on how to do this? I have been experimenting with using a "Compose" action with an expression "sort(variables('retrievedItems'), if(empty(item()?['DueDate']), '9999-12-31T23:59:59Z', item()?['DueDate']), 'asc')" as I thought using a dummy generic date would be a workaround, but I am getting a notification that this expression isn't valid. 

 

Here is a picture of my flow:

 

Processs Flow(2).PNG

 

Any help or guidance would be greatly appreciated.

 

Thank you!

2 ACCEPTED SOLUTIONS

Accepted Solutions

Hi @MGIOSEFFI 

 

Yes, you are correct. I have another workaround for this problem. Here is the sample flow.

 

I have stored input array in compose action and for this example, I have taken only one property 'DueDate' in the input array:

ManishSolanki_0-1714058027299.png

[
{
"DueDate": "2024-04-25"
},
{
"DueDate": "2024-04-01"
},
{
"DueDate": ""
},
{
"DueDate": "2024-04-03"
}
]

 

Next, add filter action to filter elements whose DueDate is empty. Pass the sorted array as the input of "Filter array" action. I have used expression to sort the array in compose action:

ManishSolanki_1-1714058181967.png

Expression used in 'Form' parameter:

sort(outputs('Compose'),'DueDate')

Click 'Edit in advanced mode' button and enter the below query in the textbox:

@equals(item()?['DueDate'], '')

 

Similarly, add another "Filter array" as a parallel action which filter out nonempty DueDate from sorted array. For sorting, add the same expression in the 'From' parameter:

ManishSolanki_2-1714058366685.png
sort(outputs('Compose'), 'DueDate')

Click 'Edit in advanced mode' button and enter the below query in the textbox:

@not(equals(item()?['DueDate'], ''))

 

 

Finally, join the result of both filter arrays in such a way that nonempty should appear first and empty will be appended at the bottom. To achieve this, add an expression using union() function with first parameter as nonempty sorted output of filter array 2 and second parameter will the output of filter array. Add compose action and enter the below expression:

ManishSolanki_3-1714058598075.png
union(body('Filter_array_2'),body('Filter_array'))

 The output of compose 2 action will be the resultant array with empty DueDate pushed at the bottom position.

 

 

Output:

ManishSolanki_4-1714058684814.png

 

 

 

 

If this helps & solves your problem, please remember to give a 👍 and accept my solution as it will help others in the future.

 

Thanks
Manish Solanki
View my blog
Linkedin

View solution in original post

@ManishSolanki thank you! I think that may have worked so far. The issue I am encountering now is trying to figure out how to add the output to my HTML table. As you can see from the screenshot below, I have tried adding the Output of the "Compose 2" action to build my table in the "Append to array variable" action, but I am getting a notification that this must be a valid json.Processs Flow(4).PNG

 

 

View solution in original post

12 REPLIES 12

Hi @MGIOSEFFI 

 

You could break this in two steps.

 

Step 1:  Use "Select" action to set default date for empty dates. Pass the variable 'retrievedItems' as its input and use the below expression to set default date for blank or missing date in DueDate column:

if(empty(item()?['DueDate']), '9999-12-31T23:59:59Z', item()?['DueDate'])

 

Step 2: Sort the output body of previous select action using an expression. You can perform sorting in compose action by using below expression:

sort(body('Select'),'DueDate')

Finally, pass the output of compose action as input to "Create HTML table".

 

 

 

If this helps & solves your problem, please remember to give a 👍 and accept my solution as it will help others in the future.

 

 

 

Thanks
Manish Solanki
View my blog
Linkedin

@ManishSolanki thank you very much for getting back to me. Is there a way I can get blank fields to appear at the bottom of my "Due Date" column without having to enter a fake date? Ideally, I would like to find a way to have all Due Dates in my HTML table in sorted in ascending order and then just have blank fields at the bottom of my HTML table.

Hi @MGIOSEFFI 

 

Yes, there is a workaround. Use the below expression to reverse the array present in the variable:

reverse(sort(variables('retrievedItems'),'DueDate'))

Pass the output of above expression as the input to "Create HTML table" to push back empty dates at the bottom.

 

 

 

If this helps & solves your problem, please remember to give a 👍 and accept my solution as it will help others in the future.

 

Thanks
Manish Solanki
View my blog
Linkedin

@ManishSolanki Based on my limited understanding of Power Automate, won't this just sort all of my dates in descending order? While I do want blanks at the bottom of my HTML table, I still want the fields that have a Due Date to be in ascending order.

Hi @MGIOSEFFI 

 

Yes, you are correct. I have another workaround for this problem. Here is the sample flow.

 

I have stored input array in compose action and for this example, I have taken only one property 'DueDate' in the input array:

ManishSolanki_0-1714058027299.png

[
{
"DueDate": "2024-04-25"
},
{
"DueDate": "2024-04-01"
},
{
"DueDate": ""
},
{
"DueDate": "2024-04-03"
}
]

 

Next, add filter action to filter elements whose DueDate is empty. Pass the sorted array as the input of "Filter array" action. I have used expression to sort the array in compose action:

ManishSolanki_1-1714058181967.png

Expression used in 'Form' parameter:

sort(outputs('Compose'),'DueDate')

Click 'Edit in advanced mode' button and enter the below query in the textbox:

@equals(item()?['DueDate'], '')

 

Similarly, add another "Filter array" as a parallel action which filter out nonempty DueDate from sorted array. For sorting, add the same expression in the 'From' parameter:

ManishSolanki_2-1714058366685.png
sort(outputs('Compose'), 'DueDate')

Click 'Edit in advanced mode' button and enter the below query in the textbox:

@not(equals(item()?['DueDate'], ''))

 

 

Finally, join the result of both filter arrays in such a way that nonempty should appear first and empty will be appended at the bottom. To achieve this, add an expression using union() function with first parameter as nonempty sorted output of filter array 2 and second parameter will the output of filter array. Add compose action and enter the below expression:

ManishSolanki_3-1714058598075.png
union(body('Filter_array_2'),body('Filter_array'))

 The output of compose 2 action will be the resultant array with empty DueDate pushed at the bottom position.

 

 

Output:

ManishSolanki_4-1714058684814.png

 

 

 

 

If this helps & solves your problem, please remember to give a 👍 and accept my solution as it will help others in the future.

 

Thanks
Manish Solanki
View my blog
Linkedin

@ManishSolanki thank you! I think that may have worked so far. The issue I am encountering now is trying to figure out how to add the output to my HTML table. As you can see from the screenshot below, I have tried adding the Output of the "Compose 2" action to build my table in the "Append to array variable" action, but I am getting a notification that this must be a valid json.Processs Flow(4).PNG

 

 

Hi @MGIOSEFFI 

 

This is error due to extra colon ':' at the end of 'Requester Name' property value. To fix the json, pls remove that colon from there.

 

 

If this helps & solves your problem, please remember to give a 👍 and accept my solution as it will help others in the future.

 

Thanks
Manish Solanki
View my blog
Linkedin

@ManishSolankithank you for that- that helped fix that issue. I am very sorry for all of my questions, but I have one more issue I am encountering that I am hoping you can help me with. I am getting the following error in my "Filter Array" action: The template language function 'sort' did not find the named sortField 'DueDate' on one or more objects in the array. After inspecting the outputs of my "Compose" action prior to the "Filter Array" action, I have realized that any "Due Date" fields that are blank are actually completely left out the outputs of the Compose action (i.e. there is no Due Date field at all). The outputs of my "Compose" action only have a Due Date field for taskings when there is actually a date listed.  I think this is what is causing the error, but I am not sure how to get around this 

Hi @MGIOSEFFI 

 

Get items action does return null or missing values in the output value object.

 

To get those values, use select action that accepts output value array from get items action as its input. In the map object, enter 'DueDate' as the key and for its value use the below expression:

if(empty(item()?['DueDate']),'',item()?['DueDate'])
The expression will set the empty string if DueDate value is missing or empty in the output of get items.
 

Use the output body of Select action further that has DueDate property in all elements.

 

 

 

If this helps & solves your problem, please remember to give a 👍 and accept my solution as it will help others in the future.

 

Thanks
Manish Solanki
View my blog
Linkedin

Hi @ManishSolanki ,

 

I have been trying this, but am receiving the following error when I try to save my flow: "Fix invalid expression(s) for the input parameter(s) of operation ‘Filter_array" and "Fix invalid expression(s) for the input parameter(s) of operation ‘Filter_array_2". Here is a screenshot of my flow:

 

vProcesss Flow(5).PNG

Please let me know if you have any suggestions- I am assuming my "Sort" function is not quite right, but I am not quite sure what could be causing the issue. I really appreciate all of your help!

 

Hi @MGIOSEFFI 

 

Pls use below query in:

 

Filter array:

@equals(item()?['Due Date']

 

Filter array :

@not(equals(item()?['Due Date'], ''))

 

 

 

If this helps & solves your problem, please remember to give a 👍 and accept my solution as it will help others in the future.

 

Thanks
Manish Solanki
View my blog
Linkedin

@ManishSolanki thank you- that worked! How can I now add the output of the "Compose 2" action (

union(body('Filter_array_2'),body('Filter_array')) to my HTML table? If you look at my "Append to Array" function below, you will see I have added the Output of "Compose 2" for my Due Date field.

Processs Flow(6).PNG

The problem is now all of the due dates from my "Compose 2" action are now being applied to each tasking. Here is an example of what I mean below. Note the multiple due dates that are indicated for a single tasking. 

 

Processs Flow(7).PNG

 

 

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 (597)