Hey guys,
I'm having a "problem" with delegation. I've already gone through the numerous threads on this issue but they didn't help me find a workaround/other solution.
I'm currenly building a simple apps to query the data from sharepoint list.
For example, I'm using the following formula to filter the data by the user inputs. The warning occurs.How will I fix this? Any recommendations please. See the Screenshot for better understanding. Thank you very much
Set(
Vstatus,
Dropdown5.Selected.Ivalue
);
ClearCollect(
MyRequestList,
Filter(
Contract,
CurrentUserEmail = 'Requestor Mail',
If(
!IsBlank(Vstatus),
Vstatus = 'Form Status',
true
),
If(
!IsBlank(TextInput9.Text),
StartsWith(
'Form NO.',
TextInput9.Text
),
true
)
)
)
Solved! Go to Solution.
You'll need to recode those IF statements to do the same thing but using a slightly different method
Set(
Vstatus,
Dropdown5.Selected.Ivalue
);
ClearCollect(
MyRequestList,
Filter(
Contract,
CurrentUserEmail = 'Requestor Mail',
!IsBlank(VStatus) = true Or Vstatus = 'Form Status',
!IsBlank(TextInput9.Text) = true Or StartsWith('Form NO.',TextInput9.Text)
)
)
Here's a link to my forum post a week ago where I helped with a similar issue. I put my pattern for avoiding delegation there. You can bookmark to it for future reference.
---
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.
You'll need to recode those IF statements to do the same thing but using a slightly different method
Set(
Vstatus,
Dropdown5.Selected.Ivalue
);
ClearCollect(
MyRequestList,
Filter(
Contract,
CurrentUserEmail = 'Requestor Mail',
!IsBlank(VStatus) = true Or Vstatus = 'Form Status',
!IsBlank(TextInput9.Text) = true Or StartsWith('Form NO.',TextInput9.Text)
)
)
Here's a link to my forum post a week ago where I helped with a similar issue. I put my pattern for avoiding delegation there. You can bookmark to it for future reference.
---
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.
Another approach to fixing this that can be useful in complex filtering scenarios is to next the filters. Since the delegation warning is only on one of the clauses in your filter you can also fix it by adding a filter within a filter. Use the inner filter with the parts that don't cause a delegation warning. If that will get your record count below the limit then you can safely ignore the warning. In your case I suspect that the filter on current user alone may get you below the 500 record limit. So you could try this filter.
Set(
Vstatus,
Dropdown5.Selected.Ivalue
);
ClearCollect(
MyRequestList,
Fliter(
Filter(
Contract,
CurrentUserEmail = 'Requestor Mail'),
If(
!IsBlank(Vstatus),
Vstatus = 'Form Status',
true
),
If(
!IsBlank(TextInput9.Text),
StartsWith(
'Form NO.',
TextInput9.Text
),
true
)
)
)
That is not a solution, if the collect ton give the warning neither should the source, Microsoft needs to fix this give us a toggle or something.
Stay up tp date on the latest blogs and activities in the community News & Announcements.
Dive into the Power Platform stack with hands-on sessions and labs, virtually delivered to you by experts and community leaders.
User | Count |
---|---|
210 | |
202 | |
83 | |
57 | |
39 |
User | Count |
---|---|
325 | |
260 | |
130 | |
86 | |
56 |