I'm a beginner with Powerapps and I am in need of guidance on how to proceed with these.
Sort('Phones 2', "Last Name_Coulmn1",SortOrder.Ascending)
Filter ('Phones 2',Frequency_Column1 = 1A)
First('Phones 2')
I get a warning message about "large datasets". I've tried with an imported SharePoint list of 6 items and another with 1900 items.
The second warning/error message reads "... operation not supported by this connector".
Any feedback would be appreciated.
Aside from not using double quotes on my textbox values, I also used the wrong gallery item. I'm not sure how common some of these mistakes are, but I was quickly able to get things working once I realized the mistake.
Thanks for the feedback.
I was able to get things working.
Based on all the feedback, I was able to successfully test a new command on my sample Active Directory list.
SortByColumns(Search(ADContacts, TextSearchBox1.Text, "Title"), "Title", If(SortDescending1, Descending, Ascending))
I can now move forward with My other lists
Hi @Pascal_tcl ,
Could you tell me:
1)the data type of these fields Last Name_Coulmn1,Frequency_Column1?
2)whether your sharepoint list has 1900 items?
Do you have two problems:
1)delegation warning?
2)operation not supported by this connector?
Q1:
If your sharepoint list only has 1900 items, then you just need to change the delegation limit to 2000.
Even if you have delegation warning, your app's performance will not be affected.
For now, based on your provided formulas, the key point is First() function is not delegate, which leads delegation warning appearing.
Please refer this table about delegate functions for sharepoint :
Q2:
Do you have this problem in this formula:
Filter ('Phones 2',Frequency_Column1 = 1A)?
The key point is this Frequency_Column1 field data type and what does 1A represent?
If "1A" is a text and Frequency_Column1 is text type, you should try this formula:
Filter ('Phones 2',Frequency_Column1 = "1A")
Best regards,
The Delegation issue is First(). (which is not Delegable). This blog of mine may be useful for you to understand the principle.
Can you explain more about your context and what do you intend to obtain.
1. Sort('Phones 2', "Last Name_Coulmn1",SortOrder.Ascending)
- bring from Sharepoint all the records sorted ascending from Phones 2 list (sorted ascending on server side) .
you can read more about delegation warning here.
2. Filter ('Phones 2',Frequency_Column1 = 1A)
- should give an error because the string value must be quoted in PowerApps.
3. First('Phones 2')
- refer to first record from 'Phones 2'
Where does this code reside?
Try this;
UpdateContext({myrecord: First(Sort(Filter ('Phones 2',Frequency_Column1 = "1A"), "Last Name_Coulmn1",SortOrder.Ascending))})
Assuming Frequency_Column1 is a string, you need quotes around your A1.
Hope this helps.
WarrenBelz
637
Most Valuable Professional
stampcoin
570
Super User 2025 Season 2
Power Apps 1919
473