
Hi all,
I have created a collection which stores values from Dataverse.
How can I add a row to the collection only?
Collection Created is :
ClearCollect(DataPoint, TestTable)
You can use the "Collect" function to add a new row to your collection "DataPoint". The syntax for this function is "Collect(CollectionName, ItemToAdd)". In your case, the collection name is "DataPoint" and the item you want to add is "TestTable".
Example:
Collect(DataPoint, TestTable)
You can also use the "Add" function with the same syntax if you want to add multiple rows at once.
Example:
Add(DataPoint, TestTable1, TestTable2, TestTable3)
Please note that this will append the rows at the end of the Collection and use ClearCollect will remove all the previous data and add the new data you are collecting.
If my reply helped you, please give a 👍, & if it solved your issue, please 👍& Accept it as the Solution to help other community members find it more. |