Hi Everyone,
I'm trying to generate a .pptx from some dataverse data. The template will have 3 static slides (intro, data, data with a table repeater), and a group of slides for each component I'm pulling from a list.
I'm not clear on how to define a repeater for a slide that contains a table and multiple additional slides.
{
"title": "example JSON",
"elements": [
{
"images": ["encode64","encode64","encode64"],
"name": "first",
"tables": [{"name": "1"},{"name": "2"},{"name": "3"}]
},
{
"images": ["encode64","encode64","encode64"],
"name": "second",
"tables": [{"name": "5"},{"name": "6"},{"name": "7"}]
}
]
}
I would like to get out of this 3 initial slides based on "title" than a slides for each "elements", a slide for each image, so in this example will be 4 slide per element, one for the element and 3 for the images.
Reading the documentation seems i would be able to repeat a slide or repeat a table and not both at the same time.
Expectation:
Slide1 Slide2 Slide3 (static) -> Slide4(first and containing a table with values 1,2,3) -> Slide5 Slide6 Slide7(each containing one of the images in the array) -> Slide8(repeat of Slide4 and containing a table with values 5,6,7) ->Slide9 Slide10 Slide11(each containing one of the images in the array).
Will I be able to achieve this?
