Hello!
I got 2 comboboxes where you can filter the gallery with. I got the max objects 500 to load into powerapps from my sharepoint list.
But when I filter on for example Agreementarea: "Sweden" and Status: "Finished" I only get 61 results when I know there is 400 items with those statuses in that agreementarea.
Is there anyway to make it load the latest 400 items of my choices?
This is the filter I got in my gallery right now:
If('Toggle'.Value;
Filter(
Sort(
'Logg';
'Case received';
Descending);
TextInput1.Text in 'Internt' & 'Externt' & 'Logg skapad av'.DisplayName;
Agreementarea.Value in "Sweden" & "Denmark" & "Norway";
Status.Value in "Finished" & "Ongoing" & "Paused"
)
;Filter(
Sort(
'Logg';
'Case received';
Descending);
TextInput1.Text in 'Internt' & 'Externt' & 'Logg skapad av'.DisplayName;
Agreementarea.Value in ComboBox2.SelectedItems.Value;
Status.Value in 'ComboBox status'.SelectedItems.Value
))
HI, have you checked the delegation doc?
https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/delegation-overview
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
User | Count |
---|---|
202 | |
70 | |
51 | |
49 | |
20 |
User | Count |
---|---|
262 | |
122 | |
86 | |
79 | |
72 |