Hello,
When I am adding items to a collection, when the first item is added, it also creates a blank row above it in the collection, however when additional items are added, no further blank rows are created.
As you can see from my gallery, there is a blank row at the top - the data source of my gallery is my collection:

This is also visible in my Collection variables:

A button I use to add this data into my collection uses this fx:
Collect(colTopicClaim, {Topic: Topic_dd.Selected.Value, TopicRAGStatus: TopicRAGStatus_dd.Selected.Result, Claim: Claim_TextInput.Text});
UpdateContext({varTopicClaim: false})
It's also worth noting that my collection is created from a previous screen with this fx:
NewForm(DocData_form);ClearCollect(colTopicClaim, {Topic: "", Claim: "", TopicRAGStatus: ""}) ;Navigate(FormScreen,ScreenTransition.Cover)
Ideally, Id like to use this fx on the button that saves data to my collection - this includes 'ThisItem' however when doing so, creates two blank rows in the collection along with the row with data (so 3 rows in total!)
Collect(colTopicClaim, ThisItem, {Topic: Topic_dd.Selected.Value, TopicRAGStatus: TopicRAGStatus_dd.Selected.Result, Claim: Claim_TextInput.Text});
UpdateContext({varTopicClaim: false})
I've also tried using Patch instead of Collect and this causes the same kind of duplication!
Any pointers would be really helpful.
Thanks.