Oct 08 2017 03:07 PM
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 items assigned to the user?
thanks
Oct 09 2017 06:23 AM
Oct 09 2017 03:38 PM
Great question John. I don't know if there is a view defined behind the presentation in the PowerApps. If there is I could certainly configure it to show only the items assigned to the user.
Is there a view defined behind the presentation in the PowerApps? If so, how do i specify the view to use?
Oct 09 2017 03:45 PM
btw, the computer im using to try this out has windows 7, so i can only use the web ui... no Powerapps desktop.
Oct 09 2017 10:44 PM
SolutionOct 10 2017 05:31 PM - edited Oct 10 2017 05:53 PM
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...