Hello Everyone!
I've been having trouble retrieving data from a nested gallery. This is what it looks like:
SearchResults is a horizontal gallery containing a string of text, and another Gallery(Gallery 3) that contains 3 different text columns and a check box column.
The mission is to place this data in a collection so I can export it to CSV format. I think I can handle the latter part, but placing the data into a collection has been quite the challenge. Here's my code so far:
ForAll(
SearchResults.AllItems,
Collect(
tempCollection,
{
coreOutcome : Title1.Text
}
);
ForAll(
SearchResults.AllItems.Gallery3,
Collect(
gallery3Collection,
Gallery3.AllItems
)
)
);
While tempCollection has data shown below:
gallery3Collection has nothing:
I understand that these are 2 separate collections, but I figured if I can find a way to retrieve the data from the nested gallery into gallery3Collection, the rest would be doable.
so I guess in summary the problem is: I need help in gathering data from a nested gallery into a collection.
Does anyone have ideas?

Report
All responses (
Answers (