
Hello Everyone,
I am new to Powerapps, need help in achieving the following.
1) I have an existing sharepoint list with asset details (Server Name, Service Owner - Email , OS, Upgrade date etc.
2) I want the "Service Owner - Email" to see the devices assigned to him only, I believe we can use Filter('Legacy Table',' Service Owner' = User().Email).
3) Once Logged in the user will be able to see the devices assigned to him, and I want him to select a date for a specific/multiple devices. (this date would be the commitment the "Service Owner" to upgrade the Systems)
4) This data should be updated in the sharepoint list as well, which would help me to track.
thanks!
If you're totally new to PowerApps, I would advice you to start wit the predifined template based on a SharePoint connection here:
You''ll get the app with some predefined screens and forms, and you can redecorate this to your personal taste and needs. Your suggestion about the filter was correct, so you can use that as an alternative to the predifined Items of the Gallery in the first screen. BrowseGallery1 should have this code in the Items property
SortByColumns(Filter('Legacy Table',' Service Owner' = User().Email), StartsWith(Title, TextSearchBox1.Text)), "Title", If(SortDescending1, SortOrder.Descending, SortOrder.Ascending))