Hi Mates,
we have a list of checkbox in screen1,
if only one checkbox selected then the list of questions 5 questions should be displayed in screen2.
If two checkboxes selected, then question set1(5 questions) and set2(2 questions) should be display means one set1 after another set2 question.
Note: if more checkbox selected in screen1 then set of questions will be increased. Here the question is how can configure all these questions in the same screen2, which means screen2 should be the same but question sets should be displayed one set after another.
kindly guide me with clear information.
Solved! Go to Solution.
Hi @muralikrishna12 ,
Could you tell me:
1)what is your data source?
2)how do you store those questions in your data source?
I assume that you store data like this:
1) field1(question list, choice type) with these choices: question list1,question list2,question list3,question list4
2)field2(questions, text type)with questions: question1, question2,question3,.....
Then in your app, you could set like this:
1)insert 4 checkboxes
Checkbox1's Text:
"question list1"
Checkbox2's Text:
"question list2"
Checkbox3's Text:
"question list3"
Checkbox4's Text:
"question list4"
2)insert a gallery to display questions
set the gallery's Items:
Sort(
Filter(listname,
If(Checkbox1.Value,'question list'.Value="question list1")||
If(Checkbox2.Value,'question list'.Value="question list2")||
If(Checkbox3.Value,'question list'.Value="question list3")||
If(Checkbox4.Value,'question list'.Value="question list4")
),
'question list'.Value
)
Best regards,
Hi @muralikrishna12 ,
Could you tell me:
1)what is your data source?
2)how do you store those questions in your data source?
I assume that you store data like this:
1) field1(question list, choice type) with these choices: question list1,question list2,question list3,question list4
2)field2(questions, text type)with questions: question1, question2,question3,.....
Then in your app, you could set like this:
1)insert 4 checkboxes
Checkbox1's Text:
"question list1"
Checkbox2's Text:
"question list2"
Checkbox3's Text:
"question list3"
Checkbox4's Text:
"question list4"
2)insert a gallery to display questions
set the gallery's Items:
Sort(
Filter(listname,
If(Checkbox1.Value,'question list'.Value="question list1")||
If(Checkbox2.Value,'question list'.Value="question list2")||
If(Checkbox3.Value,'question list'.Value="question list3")||
If(Checkbox4.Value,'question list'.Value="question list4")
),
'question list'.Value
)
Best regards,
User | Count |
---|---|
123 | |
87 | |
87 | |
75 | |
66 |
User | Count |
---|---|
215 | |
180 | |
136 | |
96 | |
83 |