Skip to content

Commit 8203805

Browse files
authored
Update function-savedata-loaddata.md
1 parent dfa278f commit 8203805

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

powerapps-docs/maker/canvas-apps/functions/function-savedata-loaddata.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ The **SaveData** function stores a collection for later use under a name.
2222

2323
The **LoadData** function re-loads a collection by name that was previously saved with **SaveData**. You can't use this function to load a collection from another source.
2424

25-
Use these functions to improve app startup performance by caching data in the **[App.OnStart](../controls/control-screen.md#additional-properties)** formula on a first run and then re-loading the local cache on subsequent runs. These functions can also be used to add [simple offline capabilities](../offline-apps.md) to your app.
25+
Use these functions to improve app-startup performance by caching data in the **[App.OnStart](../controls/control-screen.md#additional-properties)** formula on a first run and then re-loading the local cache on subsequent runs. You can also use these functions to add [simple offline capabilities](../offline-apps.md) to your app.
2626

27-
These functions cannot be used inside a browser either when authoring the app in the Studio or running the app in the Web Player. Use a native player on a device to test your app during development.
27+
You can't use these functions inside a browser, either when authoring the app in PowerApps Studio or when running the app in the web player. Use a native player on a device to test your app during development.
2828

29-
These functions are limited by the amount of available app memory as they operate on an in-memory collection. Available memory can vary depending on the device and operating system, the memory used by the PowerApps player, and the complexity of the app in terms of screens and controls. if you store more than a few megabytes of data, test your app with expected scenarios on the devices you expect to be used. You should generally expect to have between 30 and 70 megabytes of available memory.
29+
These functions are limited by the amount of available app memory because they operate on an in-memory collection. Available memory can vary depending on the device and operating system, the memory that the PowerApps player uses, and the complexity of the app in terms of screens and controls. If you store more than a few megabytes of data, test your app with expected scenarios on the devices on which you expect the app to run. You should generally expect to have between 30 and 70 megabytes of available memory.
3030

31-
**LoadData** doesn't create the collection; the function only fills an existing collection. You must first create the collection with the correct [columns](../working-with-tables.md#columns) by using **[Collect](function-clear-collect-clearcollect.md)**. The loaded data will be appended to the end of the collection; use the **[Clear](function-clear-collect-clearcollect.md)** function first if you would like to start with a clean slate.
31+
**LoadData** doesn't create the collection; the function only fills an existing collection. You must first create the collection with the correct [columns](../working-with-tables.md#columns) by using **[Collect](function-clear-collect-clearcollect.md)**. The loaded data will be appended to the collection; use the **[Clear](function-clear-collect-clearcollect.md)** function first if you want to start with an empty collection.
3232

3333
Storage is encrypted and in a private ___location on the local device, isolated from other users and other apps.
3434

0 commit comments

Comments
 (0)