Hi All!
I'm creating a Control Plan app (Process-Checklist Overview). The data I'm using comes from a SharePoint List and Library.
Info about the SP List Columns:
• Process info (Title)
• Process Step
• Process sub step
• Lookup column to find the corresponding Checklist in a SharePoint library.
My question:
The numbering in the SharePoint list is not sequential. See screenshot image as example:

In my app I have a gallery where I want to show all items with step and sub step.
However, the smallest step number should appear as Step 1. The next one is Step 2, and so on.
And if a step number appears more than once, I want to include the sub step.
Same story then goes for my sub step, Lowest number should be 1. The next 2, and so on.
Result from the included image should thus be: 1 -> 2.1 -> 2.2 -> 3.
So far I used the following, but that results in sequential numbering:
ForAll( Sequence(CountRows(CollAllChecklists_NoRowNumber)), Patch( Last(FirstN(CollAllChecklists_NoRowNumber, Value)), {RowNumber: Value} ) )
Anybody how can help me out?! Any help would be greatly appreciated!