
Hello everyone,
I have a connection to a Sharepoint list. I created an empty canvas app and used it to connect to Sharepoint.
Now I have added items to this list.
I presented this SharePoint list in a simple vertical catalog in the Power Apps Canvas.
When I play the app the items in the list appear. Now when I add new items to the list, the items don't appear in the app until I reload the page.
Is there a way to display the data from the SharePoint list immediately without reloading the page?
Thank you for any help
Hi @azaterol1
It sounds like you are adding items to the SharePoint list in SharePoint and if that's the case, the Power App has no clue that someone has added/updated an item in SharePoint.
So until you supply a form in your Power App to add/update items in SharePoint, the only way to see what has changed in SharePoint is to add the following line in the OnVisible property of your screen:
Refresh(SharePoint_List_Name)
You can also add a button in the screen that has your gallery and put the same code in the OnSelect property of the button.