Hi, im using SortByColumn in a Gallery, and i am going to create buttons with different for different sort order, eg button for Title, Created, Location, Created by, Priority Requester. My variable is varSortColumn.
I use the set(varSortColumn,"Title") to set the column name to sort by.
In the Item in the Gallery i use:
SortByColumns(Filter(Serviceoppdrag;StartsWith(Tittel;TextSearchBox1.Text);Active=false);varSortColumn;If(
SortDescending1;Descending;Ascending))
When i use a variable, and not the "hord code" name of the column i get an delegation warning. Is there a way to use variable without getting the delegation issue ? When i use the column name, there is not any delegation problem, only when i use a variable.
Solved! Go to Solution.
Hi,
I'm not sure why your original formula didn't work to be honest - I'm the same as @rebeccas in that I usually just use a variable and it works?
This was a workaround to get it to work in your case where variable was not being detected correctly - I would give @rebeccas 's video a watch to see if you can use the same method within your App, otherwise use the method we've covered here for sorting the logic out beforehand.
Thanks
@iAm_ManCat |
My blog |
Please 'Mark as Solution' if someone's post answered your question and always 'Thumbs Up' the posts you like or that helped you! |
Thanks! |
Hi, thanks! I have tried Rebeccas methode, with a variable for the column that are going to be sorted, but i get the delegation problem/warning (and i have > 2000 items in the list/table). Im looking for a methode to use avariables, without getting the delegation problem.
I think using conditions looking at the variable with as many else steps as you need for all the columns to sort on is going to be the only option to avoid delegation. That said, I don't see why you need a variable for each column as that's just extra work. Just make your condition "If(varSort = "ColumnName", SortByColumns(..." where your specifying that column name in each condition.
I'm having the same issue and going to give that a try. My formula is very complex already so I really don't want to have to go this route but variables and label values are not working - I tried where a label's text property is the variable and then referenced the label.text in the formula but received the same delegation warning.
BTW - Rebecca's video shows she has a delegation warning as well (see attached).
I find apps run slow with trying to show that much data so I typically try to limit mine with different filtering options and other ways so delegation warnings are not typically a concern of mine. They aren't anything to be concerned with if you have less than 500 items. I have one or two that I need to show more data in which case I don't use Filter and use the search instead to avoid that. You just have to be careful to know when those are something that matter (as in will have any effect on your data/app) or not.
Yes, I'm seeing an obvious performance change when adding in the conditions to sort for 2 of my 8 gallery columns when the SharePoint list has 1400 or so rows. In my case I have a gallery that is using a collection as the datasource if the status of the item is not Completed or Cancelled (where there will never be more than 500) and using the SP list directly for the Completed/Cancelled items. I had to change this due to app row limits pulling all items into the collection with using the Search function (which is not delegable with SharePoint as the datasource). I think you stated this backwards, @rebeccas with Filter being delegable for SharePoint, but not Search. ...or maybe you were referring to use a search box with a StartsWith type of filter.
Anyway, I have even changed the design so that items from the active SP list get sent to a separate "archive" SP list once the status is Completed/Cancelled to improve performance and more logically separate the two types of filtering I'm doing. The active items have a search box that can use multiple terms with a delimiter that is a fantastic experience for the user, but uses functions that require a collection to be used to avoid delegation issues. When viewing the archived data I have combobox filter options for the columns, which is more clicks and more traditional than using the multi-term search box but works just fine. Trying to add in conditions for sorting the columns turns out to be more of a pain than I thought given neither a variable or label value can be used as the reference for sorting without delegation. I can create the condition before the filter of the datasource, but not only does this create performance issues but it requires double the formula just to have options to sort on 2 columns. Thus, if I add the option for all 8 columns my formula is going to be extremely lengthy and I haven't even added the option to filter in "my stuff" on this archive view. My screenshot shows my formula now for the gallery.items with just 2 columns having sorting active for the completed/cancelled view (highlighted) with the remainder of the formula for the active view.
I was trying to avoid having multiple galleries or screens to view each datasource so there wouldn't be redundencies that I'd need to update twice if updates were needed to the core gallery elements, but now I'm thinking I may need to go that route so performance isn't so slow and so my formulas aren't so lengthy. I am spending more time on getting this right the first time as this will be the model for many other apps we create that have a similar data structure where completed/cancelled status items are just going to keep growing.
*Edit*
The attachments don't show for me so I don't know if they show for others, so here's the formula in text to get an idea of how long it would be if I used this route for sorting options on all 8 columns. What is highlighted in the screen shot is italicized below:
If(gvStatus="Complete"||gvStatus="Cancelled",If(gvSortPriority="CIType_Txt",SortByColumns(Filter('Dev - CI Projects','CI Status'.Value=gvStatus&&StartsWith(Title,LblTitleFilter1.Text)&&StartsWith(CIType_Txt,LblTypeFilter1.Text)&&StartsWith(Responsible_Txt,LblResponsibleFilter1.Text)&&StartsWith(Location_Txt,LblLocationFilter1.Text)&&StartsWith(Area,LblAreaFilter1.Text)&&StartsWith(Waste_Txt,LblWasteFilter1.Text)&&StartsWith(Priority_Txt,LblPriorityFilter1.Text)&&StartsWith(DMAIC_Txt,LblDMAICFilter1.Text)),"CIType_Txt",If(gvSortDescending,Ascending,Descending),"Priority_Txt",Ascending,"Benefit",Descending,"PlanCompletion",Ascending),
If(gvSortPriority="Title",SortByColumns(Filter('Dev - CI Projects','CI Status'.Value=gvStatus&&StartsWith(Title,LblTitleFilter1.Text)&&StartsWith(CIType_Txt,LblTypeFilter1.Text)&&StartsWith(Responsible_Txt,LblResponsibleFilter1.Text)&&StartsWith(Location_Txt,LblLocationFilter1.Text)&&StartsWith(Area,LblAreaFilter1.Text)&&StartsWith(Waste_Txt,LblWasteFilter1.Text)&&StartsWith(Priority_Txt,LblPriorityFilter1.Text)&&StartsWith(DMAIC_Txt,LblDMAICFilter1.Text)),"Title",If(gvSortDescending,Ascending,Descending),"Priority_Txt",Ascending,"Benefit",Descending,"PlanCompletion",Ascending),SortByColumns(Filter('Dev - CI Projects','CI Status'.Value=gvStatus&&StartsWith(Title,LblTitleFilter1.Text)&&StartsWith(CIType_Txt,LblTypeFilter1.Text)&&StartsWith(Responsible_Txt,LblResponsibleFilter1.Text)&&StartsWith(Location_Txt,LblLocationFilter1.Text)&&StartsWith(Area,LblAreaFilter1.Text)&&StartsWith(Waste_Txt,LblWasteFilter1.Text)&&StartsWith(Priority_Txt,LblPriorityFilter1.Text)&&StartsWith(DMAIC_Txt,LblDMAICFilter1.Text)),"Priority_Txt",If(gvSortDescending,Ascending,Descending),"Priority_Txt",Ascending,"Benefit",Descending,"PlanCompletion",Ascending))),
SortByColumns(Filter(colCIPortfolio,If(gvMyStuff,Responsible_Txt=Office365Users.MyProfileV2().displayName&&'CI Status'.Value=gvStatus&&IsBlank(Find("0",Concat(Filter(Split(InputSearch.Text,","//or any delimiter.
),!IsBlank(Result)),If(TrimEnds(Result) in CIType_Txt||TrimEnds(Result) in Title||TrimEnds(Result) in Responsible_Txt||TrimEnds(Result) in Location_Txt||TrimEnds(Result) in Area||TrimEnds(Result) in Waste_Txt||TrimEnds(Result) in Priority_Txt||TrimEnds(Result) in DMAIC_Txt,// etc.
"1","0"))))||InitiatedBy_Txt=Office365Users.MyProfileV2().displayName&&
'CI Status'.Value=gvStatus&&IsBlank(Find("0",Concat(Filter(Split(InputSearch.Text,","//or any delimiter.
),!IsBlank(Result)),If(TrimEnds(Result) in CIType_Txt||TrimEnds(Result) in Title||TrimEnds(Result) in Responsible_Txt||TrimEnds(Result) in Location_Txt||TrimEnds(Result) in Area||TrimEnds(Result) in Waste_Txt||TrimEnds(Result) in Priority_Txt||TrimEnds(Result) in DMAIC_Txt,// etc.
"1","0")))),
'CI Status'.Value=gvStatus&&IsBlank(Find("0",Concat(Filter(Split(InputSearch.Text,","//or any delimiter.
),!IsBlank(Result)),If(TrimEnds(Result) in CIType_Txt||TrimEnds(Result) in Title||TrimEnds(Result) in Responsible_Txt||TrimEnds(Result) in Location_Txt||TrimEnds(Result) in Area||TrimEnds(Result) in Waste_Txt||TrimEnds(Result) in Priority_Txt||TrimEnds(Result) in DMAIC_Txt,// etc.
"1","0")))))),gvSortPriority,If(gvSortDescending,Ascending,Descending),"Priority_Txt",Ascending,"Benefit",Descending,"PlanCompletion",Ascending))
I only have a few that have a ton of data. Some of it is just simply I haven't had much need...we use PowerApps for more active items and haven't needed to use it much for items inactive (may eventually) but I do have a few that have a ton of data in them (under 2,000 but close to it).
Yes...I did get those backwards...on search and filter. I still use Search anyhow if I don't have over 500 items because it is SO much cleaner and faster.
One thing that might help is I often use the same screen for several different variations of filtered data but what they select on the screen before is what decides what shows. I have the screen before set a variable that I will "Filter" off of and I put that in the ClearCollect part...not down on the gallery. I also have a few that they can flip between what they see on the screen and it just updates the collection each time they select a different "tab" but it is the same gallery just changing what they see in it.
I am less experienced in apps with a lot of data. I have close to 50 apps being actively used at this time and I think 3 of them will have over 1,000 rows at any given time....all the rest are closer to the 500 and under range.
I do what I can to keep the data in the app as lean as possible - to your statement of filtering off first where possible. If you can follow that one formula you can see there's a lot happening for a fairly simplified view to the user. The collection I have is already filtered from the source.
...and yes, search is way better if it can be used, even if old schooler's say they prefer column header drop-down filtering options. I get a kick out of the thought that is "easier" to click into each column header and choose a filter from a list when I can have a single search box filter on all columns using multiple terms. I just wish this option was delegable.
For the current state of the first app I've developed search is fine and works great, but it is important for some to access the completed items which will only continue to grow well past the Power Apps row limit within the next few months. Given other apps that are being developed will have similar growth and needs for those other items we need to have a good solid model in place that scales.
Seems at this stage no matter the approach it's a bit of work to get a lot of data accessible in Power Apps without killing performance and/or running into delegation issues.
Thanks for the input.
@TrulsB
SORTBYCOLUMNS cannot be delegated when a variable is used as the 2nd argument.
However, we can use the WITH function to achieve the desired result with the SWITCH and SORT functions. The code below can be delegated and will return the first 2,000 records just like SORTBYCOLUMNS would typically do. You will have to write a SWITCH case for each sortable column name but the effort it takes to do that is minimal.
With(
{wFilterRecords: Filter(Serviceoppdrag; StartsWith(Tittel;TextSearchBox1.Text); Active=false)};
Switch(
varSortColumn,
"ColumnName1",
Sort(wFilterRecords, "ColumnName1", If(SortDescending1;Descending;Ascending));
"ColumnName2",
Sort(wFilterRecords, "ColumnName2", If(SortDescending1;Descending;Ascending));
"ColumnName3",
Sort(wFilterRecords, "ColumnName3", If(SortDescending1;Descending;Ascending));
)
)
If you would like a full tutorial on how to build sort controls in your app check out this article I wrote. A preview image is shown below.
Article - Power Apps Gallery Sort Controls
https://matthewdevaney.com/power-apps-gallery-sort-controls/
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
Very intuitive and yet another Delegation Management Strategy (DMS is the new acronym for workaround . . .) using With().
It is probably also worth linking to my community post to elaborate on what you are doing. Certainly deserves an acceptance.
Still not liking the Switch function where we are already using variables but it is a hell of a lot better than if()-statements 👍💪
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 in the Forums 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 of SolutionsSuper UsersNumber of Solutions @anandm08 23 @WarrenBelz 31 @DBO_DV 10 @Amik 19 AmínAA 6 @mmbr1606 12 @rzuber 4 @happyume 7 @Giraldoj 3@ANB 6 (tie) @SpongYe 6 (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. Community MembersSolutionsSuper UsersSolutions @anandm08 10@WarrenBelz 25 @DBO_DV 6@mmbr1606 14 @AmínAA 4 @Amik 12 @royg 3 @ANB 10 @AllanDeCastro 2 @SunilPashikanti 5 @Michaelfp 2 @FLMike 5 @eduardo_izzo 2 Meekou 2 @rzuber 2 @Velegandla 2 @PowerPlatform-P 2 @Micaiah 2 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 Apps anandm0861WarrenBelz86DBO_DV25Amik66Michaelfp13mmbr160647Giraldoj13FLMike31AmínAA13SpongYe27 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 Apps DBO-DV21WarranBelz26Giraldoj7mmbr160618Muzammmil_0695067Amik14samfawzi_acml6FLMike12tzuber6ANB8 SunilPashikanti8
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