Hi,
I want to make a sequence number in my gallery, so people can see sequence of the machine based on list.
I tried this:
Clear(colNumberedMachine);
ForAll('Recap SOW',
Collect(colNumberedMachine,
Last(FirstN(AddColumns('Recap SOW',
"MachineNumber",
CountRows(colNumberedMachine)+1
),
CountRows(colNumberedMachine)+1
)
)
)
)
Source: Power Apps Guide - Formulas - Generating Row Numbers - Power Apps Guide - Blog
But, the label doesn't show the number. Can anyone help me?
Thank you.