Hi,
I have a list of 100 musicians with a random number which determines a position in the list like 448, 65, 945, 561, 446, 217, etc…
I need to display the first 60 person who are those they can perform live (easy)
BUT
I also need to display the others 40 who are in the waiting list (argh)
When one of the first 60 is out, it deletes his number, the first in the waiting list takes his place and appears in the performers list automatically.
I think you could filter your collection to only show rows where the number is not empty, and then set up the collection to be limited to showing only 6o rows. Every time a number is removed, the next available person should show up in the list.
Is there a way to have in another column the number of the place ?
Like this :
30 → 1
47 → 2
68 → 3
95 → 4
136 → 5
219 → 6
It will be easier to filter the 2 collections :
1 to 60
61 to 100