Show data in different pages of the report based on data key in dataSource

Hi all,
I created a data key in script of dataSource in report which looks like:

data['myKey']=['<html><b>abcd</b></html>','<html><b>efgh</b></html>',
'<html><b>ijkl</b></html>']

I'm trying to display this in textShape component of the report, but only one page is generated with the data of the first index ie. <html><b>abcd</b></html>

I want each instance of the data to be displayed on different pages when I view the report.
The total number of pages generated should be equal to the number instances in the data key.

How can this be achieved ? or is there any workaround to do this?

Use a dataset, not a python list. Use a table with an unstructured row section.

1 Like

Thank you....Worked perfectly :blush: