I have a repeating group of lesson records from my database, that shows who took the lesson, when they took it and the results. I need to gather all this info into a single text value for an API call - how can I do that?
Specifically I want to format each entry such that it’s enclosed with square brackets [] and the who/when/results are separated with commas, like this:
[“Jessica”, “05.12.23”, “7/10”],
[“Norman”, “05.11.23”, “6/10”],
[“Hasan”, “05.11.23”, “6/10”],
So I imagine every item in the repeating group needs to be processed separately for this.
There might be a way of doing it with the toolbox plugin, but I find it kind of difficult to wrap my head around how its elements work so no luck for me currently. Any ideas?
Also there’s probably a similar topic to this one, but I failed to find any.