Hello,
I have the below scenario where request help.
1. SP List as base data
2. Status Column in List containing options = ["Open", "Submitted", "Closed", "Send Back"]
3. App containing screen where gallery is location to see the items.
4. One ACL is created to check if the logged in user is there in the ACL list.
5. If the user is in ACL then show all items else show the items where the logged in user is owner.
Requirement: I have created a dropdown in the same screen with the Status "Active" and "Closed". If the value selected is "Active" then the gallery should show items other than "Closed", and if the status is "Closed" then it should show only items with status "Closed".
Below some test code but can someone please help to achieve this?
If (
IsBlank(
LookUp(
'Admin Team',
Name.DisplayName = VarLoginUserName
)
),
Filter(
'Management App',
'Owner'.DisplayName = VarLoginUserName && If( DD_Status_1.SelectedText.Value = "Active", Filter('Management App',Status.Value <> "Closed") , Filter('Management App',Status.Value = "Closed"))
),
If( DD_Status_1.SelectedText.Value = "Active", Filter('Management App',Status.Value <> "Closed") , Filter('Management App',Status.Value = "Closed"))
Thanks,