<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Measure displays incorrect value in paginated report in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/Measure-displays-incorrect-value-in-paginated-report/m-p/4068940#M36208</link>
    <description>&lt;P&gt;Hello!&lt;BR /&gt;I am trying to build paginated report consisting of multiple row groups. I have a measure that I have imported from PBI dataset which I need to display for each row group. It is displayed correctly for the first group, but for second and third row group, the measure seemingly takes random result - sometimes it is displayed just as 0, sometimes it takes the largest result from the first row group.&lt;/P&gt;&lt;P&gt;This other forum post seems related to my problem&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/Report-Server/How-to-use-measures-in-power-bi-report-builder-which-was-created/m-p/1572045" target="_blank" rel="noopener"&gt;https://community.fabric.microsoft.com/t5/Report-Server/How-to-use-measures-in-power-bi-report-builder-which-was-created/m-p/1572045&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I believe if I add not the measure, but the whole calculated DAX formula to my query, it should work. But I couldn't figure out the syntax. The paginated report query I have is&amp;nbsp;&lt;BR /&gt;EVALUATE SUMMARIZECOLUMNS('Table1'[Column1],"MeasureName1",[MeasureName1]). I still need all these columns and measures. How can I add a DAX formula to this query?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe there are other solutions for the problem I am having?&lt;/P&gt;</description>
    <pubDate>Tue, 30 Jul 2024 10:07:14 GMT</pubDate>
    <dc:creator>arca123</dc:creator>
    <dc:date>2024-07-30T10:07:14Z</dc:date>
    <item>
      <title>Measure displays incorrect value in paginated report</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Measure-displays-incorrect-value-in-paginated-report/m-p/4068940#M36208</link>
      <description>&lt;P&gt;Hello!&lt;BR /&gt;I am trying to build paginated report consisting of multiple row groups. I have a measure that I have imported from PBI dataset which I need to display for each row group. It is displayed correctly for the first group, but for second and third row group, the measure seemingly takes random result - sometimes it is displayed just as 0, sometimes it takes the largest result from the first row group.&lt;/P&gt;&lt;P&gt;This other forum post seems related to my problem&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/Report-Server/How-to-use-measures-in-power-bi-report-builder-which-was-created/m-p/1572045" target="_blank" rel="noopener"&gt;https://community.fabric.microsoft.com/t5/Report-Server/How-to-use-measures-in-power-bi-report-builder-which-was-created/m-p/1572045&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I believe if I add not the measure, but the whole calculated DAX formula to my query, it should work. But I couldn't figure out the syntax. The paginated report query I have is&amp;nbsp;&lt;BR /&gt;EVALUATE SUMMARIZECOLUMNS('Table1'[Column1],"MeasureName1",[MeasureName1]). I still need all these columns and measures. How can I add a DAX formula to this query?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe there are other solutions for the problem I am having?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2024 10:07:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Measure-displays-incorrect-value-in-paginated-report/m-p/4068940#M36208</guid>
      <dc:creator>arca123</dc:creator>
      <dc:date>2024-07-30T10:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: Measure displays incorrect value in paginated report</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Measure-displays-incorrect-value-in-paginated-report/m-p/4070253#M36221</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="552348" data-lia-user-login="arca123" class="lia-mention lia-mention-user"&gt;arca123&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It may be helpful to add the full DAX formula. You can modify the query to include the DAX formula directly.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;EVALUATE
SUMMARIZECOLUMNS(
    'Table1'[Column1],
    "MeasureName1", CALCULATE(SUM('Table1'[YourMeasureColumn]))
)
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also make sure that the row context is set correctly for each group. Sometimes, using CALCULATE with the appropriate filters can help maintain the correct context.&lt;/P&gt;
&lt;P&gt;Sometimes it helps to use expressions in the paginated report itself. For example, you can use the LOOKUP function to get the correct value from another dataset. You can refer to the following post:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Desktop/Paginated-Reports-SSRS-not-reporting-calculated-percentages-or/m-p/775902" target="_blank"&gt;Solved: Paginated Reports/SSRS not reporting calculated pe... - Microsoft Fabric Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Ensure that any parameters used in the DAX formula are passed and handled correctly in the paginated report. You can check the following link:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Desktop/Paginated-report-help-using-measure-and-parameter-from-power-bi/td-p/2984011" target="_blank"&gt;Solved: Paginated report help using measure and parameter ... - Microsoft Fabric Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A title="https://community.powerbi.com/t5/community-blog/how-to-get-your-question-answered-quickly/ba-p/38490" href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.powerbi.com%2Ft5%2FCommunity-Blog%2FHow-to-Get-Your-Question-Answered-Quickly%2Fba-p%2F38490&amp;amp;data=05%7C02%7Cv-yohua%40microsoft.com%7Ce1106bfabecb4734a5cc08dc2305bc51%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C638423754744679080%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;amp;sdata=24%2BceC5sFd3n3%2FhFDYILWFcNjCwVClBD%2BPBsSLVfJGk%3D&amp;amp;reserved=0" target="_blank" rel="noopener nofollow noreferrer"&gt;How to Get Your Question Answered Quickly&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best Regards&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Yongkang Hua&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jul 2024 02:43:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Measure-displays-incorrect-value-in-paginated-report/m-p/4070253#M36221</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-07-31T02:43:29Z</dc:date>
    </item>
  </channel>
</rss>

