Hello All
I would like to build the simple powerapp which display some images, but when people click to see the image or next image that will auto tracking when and which page they click to save into sharepoint. could anyone can guide me how to do this kind of powerapp. If have step by step guide that will be good. Many thanks
Solved! Go to Solution.
Let's say there is a button which display images. or go to next scree.
On you sharepoint side you can have 2 columns. PageName and TimeofClick.
Butoon's OnClick Property write this:
Patch(SpListName,Defaults(SpListname),{PageName:"What Ever you want",TimeofClick:Today()})
This will store the page name and current dat time in the sharepoint list when button is clicked.
Let's say there is a button which display images. or go to next scree.
On you sharepoint side you can have 2 columns. PageName and TimeofClick.
Butoon's OnClick Property write this:
Patch(SpListName,Defaults(SpListname),{PageName:"What Ever you want",TimeofClick:Today()})
This will store the page name and current dat time in the sharepoint list when button is clicked.