Hello all,
I need help with a problem I can't manage to solve on my own. I have a list of items, each with an unique ID, on numeric order (1, 2, 3..., n) and so I want it so the user always can edit item with id=1 (button edit in detail view), and in the edit view, when filling a camp with value "1", which marks it as 'finished', can edit the next item. Meaning, for example:
- Item with ID=1 and Finish=0 can always be edited.
- Item with ID=1 and Finish=1 can always be edited.
- Item with ID=2 can only be edited if ID=1 & Finish=1, otherwise can't see the edit button.
- Item with ID=3 can edit only if ID=2 & Finish=1.
And so on. The problem I found is that if I use something such as Text(DatacardValueXX), it will always be of the item I am seeing, so for example, with ID=2, Finish will always be zero.

The formula seen above is:
If(Text(DataCardValue28)=Text(1),true,And(Text(DataCardValue28)<>Text(1),Text(DataCardValue29)=Text(1)),true,false)
What can I do? Or is it not possible at all?