(changing names for simplicity on my part) If you can help me with this, I don't mind tipping for time. At all. I'm kind of in a time crunch for this project.
I have a SharePoint List where a user can be assigned to: Group A, Group B or Group C.
They should only be able to create and view SharePoint List Items for their designated Group using my power app.
(1) How do I filter a gallery based on the group that the logged in user belongs to?
(2) How do I filter the drop down based on the group that the logged in user belongs to?
Case examples:
I belong to Group A. I go to submit a new item. I should only be able to select Group A from the dropdown because the app knows I belong to Group A.
I belong to Group A. I want to see the Gallery filter all items submit by group A. These can be from me or my Group A Team mates.
On Start=
Set(varUser, User());
Set(isuserinSPGroupA, !IsBlank ( LookUp ( 'Security List', Title = "Group A")));
Set(isuserinSPGroupB, !IsBlank ( LookUp ( 'Security List', Title = "Group B")));
Set(isuserinSPGroupC, !IsBlank ( LookUp ( 'Security List', Title = "Group C")));