I have a list with 10 questions and i display 5 of them randomly in 5 galleries(i use different screens for each).
I embed radio control in each to display the answers.
when i navigate to the next question and navigate back the radio button loses the selection.
Also sometimes i get different questions since they came in random order(non repeating).
in the items property i use
FirstN(SortByColumns(
Filter(AddColumns(AllQuestionsNew,"RandomNumber",Rand()),
Not(ID in gallery2items.ID),
Not(ID in gallery3items.ID),
Not(ID in gallery4items.ID),
Not(ID in gallery5items.ID),
Not(ID in gallery6items.ID),
Not(ID in gallery7items.ID)
),
"RandomNumber"),1).
is there a way when navigate back to be able to view the previous question and selected answer?