Power apps

Duarte Nuno Semedo Leite 0 Reputation points
2026-07-03T08:24:06.7133333+00:00

Hello, I am creating an app using Power apps. I have just a question. Since I am not using any database in the background, does all the information that is inserted by users deleted after usage, or is it stored somewhere?

Best regards,

Duarte

Community Center | Not monitored
0 comments No comments

1 answer

Sort by: Most helpful
  1. Michelle-N 19,020 Reputation points Microsoft External Staff Moderator
    2026-07-03T09:01:31.74+00:00

    Hi @Duarte Nuno Semedo Leite

    Based on your description, I understand you are creating a Canvas app in Power Apps and want to know what happens to the information entered by users since you haven't connected any background database or data source.

    If your Power Apps application does not connect to any data source and you have not explicitly configured local storage logic, the information entered by users is completely temporary and will be deleted once they close the session. It is not stored anywhere automatically by Microsoft.

    In Power Apps, canvas apps are designed to act as user interfaces that pass data back and forth to external data sources (like Dataverse, SharePoint, SQL Server, or Excel on OneDrive). If no data source is connected:

    • Any information typed into controls, inputs, internal variables, or Collections only exists in the active memory of the application during that specific session.
    • Collections are strictly local to the app instance; they are isolated to that specific user and device and are never shared across other users.
    • Once the user closes the app or refreshes the browser, that memory is completely wiped out and the data is lost.

    There are only a couple of scenarios where data might stay on a device without a cloud data source, which you would have to manually code:

    • SaveData() and LoadData() Functions: If you are explicitly using these functions in your code, Power Apps will save the collection data locally into the secure storage zone of the user's physical device or browser cache.
    • Dataverse Offline Capability: If offline capability is enabled, the device caches data locally, but this requires an active Dataverse structure.

    Therefore, if your app does not connect to an external data source and you are not using local SaveData() / offline caching logic, the entered information will not persist after the user closes the app.

    Please refer to the official Microsoft documentation:

    Develop offline-capable canvas apps

    Understand data sources for canvas apps

    SaveData, LoadData, and ClearData functions

    I hope this gives you peace of mind regarding how your app handles data.


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".  

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.