The code below works fine and increments rows from a collection connected to a gallery. I want to have it increment up until a title row and then reset to 1 on the first row after the title. The title data will be blank on the rows it needs to increment:
Please modify:
ClearCollect(
editTable,
ForAll(
Sequence(CountRows(editTable)),
Patch(
Last(FirstN(editTable, Value)),
{RowNumber: Value}
)
)
);