I have an Airtable for a timetable, and there are Linked Records with speakers assigned to each time slot. We want to create a graphic with images, titles, etc. for each time slot using placid.app. Since each slot has a different number of speakers, there is a separate template for each number of speakers, which I will later separate through a router.
In Placid.app, each speaker has their own field. My problem now is that I can’t insert each individual speaker into the respective fields. For example, Speaker 1 in Field 1 in Placid App, Speaker 2 in Field 2, etc. An Array Aggregator won’t work either. Do you have any ideas?
in case you’re iterating on the speakers, then place an array aggregator right after it, aggregating the speakers.
in case you’re not iterating on the speakers, then first add an iterator, after iterator module 4, which iterates on the speakers and place an array aggregator right after it, aggregating the speakers.
Then:
in module 5, for speaker 1, refer to the array with speakers via the index, for instance array[1].name
in module 5, for speaker 2, refer to the array with speakers via the index, for instance array[2].name
etc
So the idea is that you get an array with speakers. Then in every speaker field in module 5 you refer to the specific speaker array index.
Let me know if this works or if I missed something
Sorry for my dumb question. But do I still need to select a target structure type in the array aggregator? Because placid.app is not showing up and currently three pictures are still being created. Do you need the blueprint otherwise?