Forum Discussion
Russell Gove
Oct 08, 2017Iron Contributor
show only items assigned to logged on user
hi , i created a powerapps to let users view tasks in a sharepoint site. i just us d the tooling to have the app generated automagically for me. how to i configure the 'landing' page to only show it...
- Oct 10, 2017I found that the powerapps has an option to filter the data, but has no example to provide (just started last week :) Check out this PowerApps reference for Filter ... hope that helps you on the way.
https://powerapps.microsoft.com/en-us/tutorials/function-filter-lookup/
Kind regards, John
Richard Burdes
Oct 11, 2017Brass Contributor
Give it a shot with something like this... for a Gallery
ShowColumns(Filter(Complaints,User().Email=AssignedToTxt), "Store","PowerappsCompStatus","Complaint_x0020_Source")
I had to copy the SP list data to a single line of text column, then filter and compare and call the 3 columns I wanted. Hope this helps...