Hi All,
A Power App newbie here looking for some help please. Created a power app to submit leave/work arrangement request but with no approval workflow. It's more for providing visibility (in a SharePoint calendar view) to see staff on leave, working from home and/or working at another office location. Created the app using one of the templates (as shown below) but don't know how to ensure that users can only see what they have submitted on the main display screen as well as hide certain buttons, e.g., delete, so that only the owner of the app can make this change if needed.
I can provide screenshots if needed but it seems I do not have permission. Any help will be appreciated.
Solved! Go to Solution.
Hi @jgulliver ,
This would show only records created by the current user
SortByColumns(
Filter(
[@'Staff Leave and Work Arrangement'],
StartsWith(
Title,
TextSearchBoxl.Text
) &&
'Created By'.Email = User().Email
),
"Title",
If(
SortDescendingl,
Descending,
Ascending
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps
This is the page I am referring to.
Hi @jgulliver ,
This would show only records created by the current user
SortByColumns(
Filter(
[@'Staff Leave and Work Arrangement'],
StartsWith(
Title,
TextSearchBoxl.Text
) &&
'Created By'.Email = User().Email
),
"Title",
If(
SortDescendingl,
Descending,
Ascending
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps
Thanks for your help @WarrenBelz. I'll give this a try and let you know the outcome :).
User | Count |
---|---|
122 | |
87 | |
86 | |
75 | |
67 |
User | Count |
---|---|
214 | |
181 | |
137 | |
96 | |
83 |