top of page

Collect, Clear, and ClearCollect functions in Power Apps

Collect

The Collect function adds records to a data source. The items to be added can be:

  • A single value: The value is placed in the Value field of a new record. All other properties are left blank.

  • A record: Each named property is placed in the corresponding property of a new record. All other properties are left blank.

  • A table: Each record of the table is added as a separate record of the data source as described above. The table isn't added as a nested table to a record. To do this, wrap the table in a record first.

When used with a collection, additional columns will be created as needed. The columns for other data sources are fixed by the data source and new columns can't be added.

If the data source doesn't already exist, a collection is created.

Collections are sometimes used to hold global variables or make a temporary copy of a data source. Canvas apps are based on formulas that automatically recalculate as the user interacts with an app. Collections don't enjoy this benefit and their use can make your app harder to create and understand. Before using a collection in this manner, review working with variables.

You can also use the Patch function to create records in a data source.


Collect returns the modified data source as a table. Collect can only be used in a behavior formula.


Clear

The Clear function deletes all the records of a collection. The columns of the collection will remain.

Note that Clear only operates on collections and not other data sources. You can use RemoveIf( DataSource, true ) for this purpose. Use caution as this will remove all records from the data source's storage and can affect other users.


You can use the Remove function to selectively remove records.

Clear has no return value. It can only be used in a behavior formula.


ClearCollect


The ClearCollect function deletes all the records from a collection. And then adds a different set of records to the same collection. With a single function, ClearCollect offers the combination of Clear and then Collect.


ClearCollect returns the modified collection as a table. ClearCollect can only be used in a behavior formula.


Delegation

When used with a data source, these functions can't be delegated. Only the first portion of the data source will be retrieved and then the function applied. The result may not represent the complete story. A warning may appear at authoring time to remind you of this limitation and to suggest switching to delegable alternatives where possible. For more information, see the delegation overview.


Syntax

Collect( DataSource, Item, ... )

  • DataSource – Required. The data source that you want to add data to. If it doesn't already exist, a new collection is created.

  • Item(s) - Required. One or more records or tables to add to the data source.

Clear( Collection )

  • Collection – Required. The collection that you want to clear.

ClearCollect( Collection, Item, ... )

  • Collection – Required. The collection that you want to clear and then add data to.

  • Item(s) - Required. One or more records or tables to add to the data source.


Examples


Clearing and adding records to a data source

In these examples, you'll erase and add to a collection that's named IceCream. The data source begins with these contents:



Records and tables

These examples examine how record and table arguments to Collect and ClearCollect are handled.


Watch Talks Academy with Aroh Shukla on Power Apps - Session 2

The Tech Platform


Source: Microsoft

0 comments

Recent Posts

See All
bottom of page