Team,
I am building an app where user will give his inputs based on the questions.
I am using a gallery where there are few questions and for each question the dropdown have to change.
For example:
Q1 : Dropdown values = Me1,Me2,NA
Q2: Dropdown values = Me1,Me2,Me3,Me4
Q3: Dropdown value= Yes,No
How can I achieve this ?
Questions will change based on the user grade.
Please help me
Thanks for your reply !
Please can you explain me in details as I am not finding way to do as you suggested.
Thanks in advance !
You can Create list in Master list in Sharepoint which has columns as Grade, Question, DropdownValues
In DropdownValues you can store values separated by ; and you can display them in gallery drop down with Spliting by ;.
Then You can create another list for Records User Details and their question and their answer.
@anibra ,
Thanks for your response !
Below is my set of questions , like below have more than 10 questions
Hi @raassd ,
you can try to create a collection to keep the question and the dropdown values of the questions , example:
ClearCollect(var_values,{Qs:"Question1",Values:"Me1"},{Qs:"Question2",Values:",Me2"},{Qs:"Question2",Values:"Na"});
Lets say you have another collection/table with the questions which is the source of the gallery.
Then in the dropdown items inside the gallery Filter( var_values, Qs= ThisItem.questions).
Regards,
AK