Hi. I have a collection in my quiz app:
ClearCollect(
appQuestions,
{
ID:1,
Question: "This is question 1?",
Answers: ["Answer 1", "Answer 2", "Answer 3", "Answer 4"]
},
{
ID:2,
Question: "This is question 2?",
Answers: ["Answer 1", "Answer 2", "Answer 3", "Answer 4"]
}
)
I am struggling with the First/FirstN/Last syntax to access an answer at an index value.
I can get to the question with LookUp(appQuestions,ID=1,Question) but how do I get a specific answer?
I have tried Last(FirstN(LookUp(appQuestions,ID=1,Answers),2)) but this doesn't work.
Solved! Go to Solution.
Hi @rwittels,
The Question is
LookUp(
appQuestions,
ID=1
).Question
If you are looking for Answer 2 as the answer
Last(
FirstN(
LookUp(
appQuestions,
ID = 1,
Answers
),
2
)
).Value
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @rwittels,
The Question is
LookUp(
appQuestions,
ID=1
).Question
If you are looking for Answer 2 as the answer
Last(
FirstN(
LookUp(
appQuestions,
ID = 1,
Answers
),
2
)
).Value
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
User | Count |
---|---|
161 | |
84 | |
68 | |
63 | |
61 |
User | Count |
---|---|
211 | |
146 | |
95 | |
82 | |
67 |