Hi everyone,
I'm trying to generate a Word document using Power Automate that includes nested repeaters. My data structure includes parent items with multiple child items, and I need to display this in a Word template. Here is an example of my data:
[
{
"Serial Number": "1",
"Title": "1",
"Subtopics": [
{
"KategorieSubtopics": "1",
"TitleSubtopics": "Title 1",
"SerialNumberSubtopics": "Serial 1"
}
]
},
{
"Serial Number": "2",
"Title": "2",
"Subtopics": [
{
"KategorieSubtopics": "2",
"TitleSubtopics": "Title 2",
"SerialNumberSubtopics": "Serial 2"
}
]
}
]
I can display the parent data (Serial Number and Title) in the Word template, but I'm struggling to display the nested child data (KategorieSubtopics, TitleSubtopics, SerialNumberSubtopics). I've tried using nested tables, but the data doesn't seem to populate correctly.
Has anyone successfully implemented nested repeaters in a Word template using Power Automate? Any advice or examples would be greatly appreciated!
Thanks in advance!