<?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 Re: Measure in Power BI Report Builder in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/Measure-in-Power-BI-Report-Builder/m-p/3293157#M30183</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="11397" data-lia-user-login="Shahfaisal" class="lia-mention lia-mention-user"&gt;Shahfaisal&lt;/a&gt;&amp;nbsp;I have entered this as a formula but when I try and input that into my graph, it gives me the following error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"The expression used for the calculated field 'Percent' includes an aggregate, RowNumber, RunningValue, Previous or lookup function. Aggregate, RowNumber, RunningValue, Previous and lookup functions cannot be used in calculated field expressions.&lt;BR /&gt;----------------------------&lt;BR /&gt;The definition of the report '' is invalid.&lt;BR /&gt;----------------------------&lt;BR /&gt;An error occurred during local report processing."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not sure where I am going wrong with my formula.&lt;/P&gt;</description>
    <pubDate>Tue, 20 Jun 2023 12:02:13 GMT</pubDate>
    <dc:creator>NJ81858</dc:creator>
    <dc:date>2023-06-20T12:02:13Z</dc:date>
    <item>
      <title>Measure in Power BI Report Builder</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Measure-in-Power-BI-Report-Builder/m-p/3288366#M30154</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am transferring a report from Power BI to a paginated report and I have a measure in my Power BI report that I am not sure how to transfer it over to the paginated report in Power BI Report Builder. My measure in Power BI is:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;% Yes = 

VAR _yes = CALCULATE(COUNT('Table'[Value]), FILTER('Table', [Group] = "Yes"))
VAR _total = COUNT('Table'[Value])
RETURN
DIVIDE(_yes, _total)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help is greatly appreciated, thank you in advance!&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jun 2023 17:43:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Measure-in-Power-BI-Report-Builder/m-p/3288366#M30154</guid>
      <dc:creator>NJ81858</dc:creator>
      <dc:date>2023-06-16T17:43:51Z</dc:date>
    </item>
    <item>
      <title>Re: Measure in Power BI Report Builder</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Measure-in-Power-BI-Report-Builder/m-p/3289717#M30160</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;=IIF(Fields!Group.Value = "Yes", Count(Fields!Value.Value), 0) / Count(Fields!Value.Value)&lt;/P&gt;</description>
      <pubDate>Sun, 18 Jun 2023 22:35:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Measure-in-Power-BI-Report-Builder/m-p/3289717#M30160</guid>
      <dc:creator>Shahfaisal</dc:creator>
      <dc:date>2023-06-18T22:35:58Z</dc:date>
    </item>
    <item>
      <title>Re: Measure in Power BI Report Builder</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Measure-in-Power-BI-Report-Builder/m-p/3293157#M30183</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="11397" data-lia-user-login="Shahfaisal" class="lia-mention lia-mention-user"&gt;Shahfaisal&lt;/a&gt;&amp;nbsp;I have entered this as a formula but when I try and input that into my graph, it gives me the following error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"The expression used for the calculated field 'Percent' includes an aggregate, RowNumber, RunningValue, Previous or lookup function. Aggregate, RowNumber, RunningValue, Previous and lookup functions cannot be used in calculated field expressions.&lt;BR /&gt;----------------------------&lt;BR /&gt;The definition of the report '' is invalid.&lt;BR /&gt;----------------------------&lt;BR /&gt;An error occurred during local report processing."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not sure where I am going wrong with my formula.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2023 12:02:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Measure-in-Power-BI-Report-Builder/m-p/3293157#M30183</guid>
      <dc:creator>NJ81858</dc:creator>
      <dc:date>2023-06-20T12:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: Measure in Power BI Report Builder</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Measure-in-Power-BI-Report-Builder/m-p/3305376#M30300</link>
      <description>&lt;P&gt;The expression should be used in a group row but it looks like you used it in a detail row.&lt;/P&gt;&lt;P&gt;See&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/sql/reporting-services/lesson-6-adding-grouping-and-totals-reporting-services?view=sql-server-ver16" target="_blank"&gt;https://learn.microsoft.com/en-us/sql/reporting-services/lesson-6-adding-grouping-and-totals-reporting-services?view=sql-server-ver16&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jun 2023 02:15:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Measure-in-Power-BI-Report-Builder/m-p/3305376#M30300</guid>
      <dc:creator>Shahfaisal</dc:creator>
      <dc:date>2023-06-28T02:15:13Z</dc:date>
    </item>
  </channel>
</rss>

