Hello,
I have set up a gallery from a Sharepoint list. The list (RequestList) has a column titled Decision Status. The column is a Single Text column. I want my user to be able to click one of four buttons to decide which status to view. I am also only allowing the user to view items on which they are the listed supervisor (Supervisor).
App OnStart: Set(varUser, User().FullName);
For my buttons:
For my gallery -- Items:
Filter(RequestList,Supervisor = varUser && If( !IsBlank(SelectedStatus) && SelectedStatus = "Pending", 'Decision Status' = "Pending", .IsBlank(SelectedStatus) && SelectedStatus = "Approved", 'Decision Status' = "Approved", !IsBlank(SelectedStatus) && SelectedStatus = "All", true ))
However, I get a delegation warning on my If formula, and also...nothing happens when I push a button. I really appreciate any help or ideas! Thank you.
Solved! Go to Solution.
Hopefully I am understanding your app correctly. I believe SelectedStatus is a SET variable that stores a text string which can be one of "Pending", "Approved", "Declined" or "All". 'Decision Status' is a single line text column in SharePoint.
Please try this code and let me know the result. Share a screenshot of any error messages.
Filter(
RequestList,
Supervisor = varUser,
'Decision Status' = SelectedStatus
Or 'DecisionStatus' = "All"
)
I missed the Items code in your initial post. Sorry for that.
---
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."
Can you please post a screenshot of your app? This would help me to viusalize the problem.
What did you put in the Items property of the gallery?
---
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."
Gallery's Items is:
Filter(RequestList,Supervisor = varUser &&
If(
!IsBlank(SelectedStatus) && SelectedStatus = "Pending",
'Decision Status' = "Pending",
.IsBlank(SelectedStatus) && SelectedStatus = "Approved",
'Decision Status' = "Approved",
!IsBlank(SelectedStatus) && SelectedStatus = "All",
true
))
Below is a screenshot, the lefthand column is my gallery that should display items based on the button selected.
Hopefully I am understanding your app correctly. I believe SelectedStatus is a SET variable that stores a text string which can be one of "Pending", "Approved", "Declined" or "All". 'Decision Status' is a single line text column in SharePoint.
Please try this code and let me know the result. Share a screenshot of any error messages.
Filter(
RequestList,
Supervisor = varUser,
'Decision Status' = SelectedStatus
Or 'DecisionStatus' = "All"
)
I missed the Items code in your initial post. Sorry for that.
---
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."
Thank you! Now it works perfectly. I appreciate the help!!
Check out new user group experience and if you are a leader please create your group
Did you miss the call?? Check out the Power Apps Community Call here!
See the latest Power Apps innovations, updates, and demos from the Microsoft Business Applications Launch Event.
User | Count |
---|---|
260 | |
217 | |
76 | |
38 | |
34 |
User | Count |
---|---|
332 | |
224 | |
125 | |
69 | |
55 |