I would like to add a column with an ID number to a collection. I've tried the formula below, but it is not working for me.
ClearCollect(
colSolution,
ForAll(
Sequence(CountRows(colVehicles)),
Patch(
Last(FirstN(colVehicles, Value)),
{RowNumber: Value}
)
)
)
Can anyone advice me on what I should do?