I'm not sure where the data is coming from for the rowNumber field. If you are trying to generate a row number in the collection this code will work:
ForAll (CollectionName,
Collect(CollectionNumbered,
Last(FirstN(AddColumns(CollectionName, "RowNumber", CountRows(CollectionNumbered)+1),
CountRows(CollectionNumbered)+1
)
)
)
)
If all you need if for those numbers to start at 1 you could just set the property to
ThisItem.rowNumber +1
or if the data is text you could use
Value(ThisItem.rowNumber) +1
Obviously if you are using that to find a specific row you will need to subtract the 1 before the search