I've got a gallery attached to my main form. When I go into edit mode or preview the gallery displays an empty row.
The 'Item' property of the gallery is currently set to the name of the collection (OrderDetail). If I use the formula below it will remove the empty row, however, it will also only allow one row, if I add more rows it replaces the previous entry.
Filter(OrderDetail, iDescription <> Blank() && iDescription <> "")
'iDescription' is a column in the collection whereas 'Description' is the input field in the gallery. I've tried either way and none of them work.
Figured it out, I had ClearCollect on button submit..