Displaying summary data in table

I’ve created a data page that uses a report definition as a source. The report definition contains a sum column which is assigned to pySummaryValue

How can I display the summary value in a section table?

Thanks!
Devin

@DevinD16607791 There 2 ways you could do this:

  1. Your table will have source of data page as D_DPage.pxResults. Map the column property as “.pySummaryValue(1)”

  2. In the post data transform of Data page, you can set the value from pySummaryValue to another property in pxResults directly and use that in column.

Regards

@Bhavya Thank you!

I was able to reference the .pySummaryValue in the column, however I’m having issues with setting the value to another property in pxResults.

Here is my current attempt. Am I missing something / doing somehting wrong?

Pages.png

Thank you again for your help with this,

Devin

@DevinD16607791 In the data transform you have used it incorrectly. Change your step as below:

  1. For each page in → Primary.pxResults

2.1 Set pyLabel = .pySummaryValue(1)

Regards