Hello Friends,
I would like to add a field to PowerApps where you can type something and it will be saved even though the apps is restarted. This should of course be connected to a Sharepoint list.
Thank you!!

Hello Friends,
I would like to add a field to PowerApps where you can type something and it will be saved even though the apps is restarted. This should of course be connected to a Sharepoint list.
Thank you!!
Hello,
There is two options for this:
- You can use patch() in the "onchange" parameter of a text input, for example :
patch(yoursplist,defaults(yoursplist),{Title:TextInput1.Text})It will save text of your text input in a new record in yoursplist each time you modify text in textinput1
- You can use functions "savedata" and "loaddata" with a collection to save your data on client side in case of restarting the application