<?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: Dax for smiliar function in power bi for over spotfire function in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-smiliar-function-in-power-bi-for-over-spotfire-function/m-p/1840127#M39250</link>
    <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , if rowid in the incremental column given by sport fire then add index column in power query else use rowid (if it is column)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try a new column&amp;nbsp; DAX: &lt;A href="https://stackoverflow.com/questions/45715963/creating-an-index-column-for-power-bi" target="_blank"&gt;https://stackoverflow.com/questions/45715963/creating-an-index-column-for-power-bi&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if( [index] = maxx(filter(Table, [SFU_MATL_ID] = max([SFU_MATL_ID]) &amp;amp;&amp;amp; [FY_MTH_ID] =max([FY_MTH_ID]) &amp;amp;&amp;amp; [FPC_ID] =max(FPC_ID) ), [index]) ,Max([MRP_AVAIL_USD_AMT]),blank())&lt;/P&gt;</description>
    <pubDate>Thu, 13 May 2021 07:29:36 GMT</pubDate>
    <dc:creator>amitchandak</dc:creator>
    <dc:date>2021-05-13T07:29:36Z</dc:date>
    <item>
      <title>Dax for smiliar function in power bi for over spotfire function</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-smiliar-function-in-power-bi-for-over-spotfire-function/m-p/1839812#M39240</link>
      <description>&lt;P&gt;Hi Team,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Anyone know which function in Powerbi is similar to "Over function in spotfire" ?&amp;nbsp;in power bi which is the similar function or dax for this&amp;nbsp;(Max(RowId()) OVER ([SFU_MATL_ID],[FPC_ID],[FY_MTH_ID]). Could u please help on this dax&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 13 May 2021 03:56:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-smiliar-function-in-power-bi-for-over-spotfire-function/m-p/1839812#M39240</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-05-13T03:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: Dax for smiliar function in power bi for over spotfire function</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-smiliar-function-in-power-bi-for-over-spotfire-function/m-p/1839912#M39244</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , as long as you want display these three in UI [SFU_MATL_ID],[FPC_ID],[FY_MTH_ID] (column) , max(Table[RowID])&amp;nbsp; will do &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;else max of max&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;maxx(summarize(Table, [SFU_MATL_ID],[FPC_ID],[FY_MTH_ID], "_1", max(Table[RowID])),[_1])&lt;/P&gt;</description>
      <pubDate>Thu, 13 May 2021 05:28:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-smiliar-function-in-power-bi-for-over-spotfire-function/m-p/1839912#M39244</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2021-05-13T05:28:58Z</dc:date>
    </item>
    <item>
      <title>Re: Dax for smiliar function in power bi for over spotfire function</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-smiliar-function-in-power-bi-for-over-spotfire-function/m-p/1840018#M39248</link>
      <description>&lt;P&gt;Hi Amit,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;in Spot fire reports they are using this calculation&amp;nbsp;&lt;SPAN&gt;(Max(RowId()) OVER ([SFU_MATL_ID],[FPC_ID],[FY_MTH_ID]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but i need dax in power bi, how can i write dax for above calculation in power bi? could you please provide dax for above calculation in power bi..im not using above calculation in UI level but using in power bi dax&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;or&amp;nbsp;&lt;/P&gt;&lt;P&gt;spotfire calculation: If(Max(RowId()) OVER ([SFU_MATL_ID],[FPC_ID],[FY_MTH_ID])=RowId(),&lt;BR /&gt;Max([MRP_AVAIL_USD_AMT]) OVER ([SFU_MATL_ID],[FPC_ID],[FY_MTH_ID]),&lt;BR /&gt;null)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;required dax in power bi...&lt;/P&gt;</description>
      <pubDate>Thu, 13 May 2021 06:53:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-smiliar-function-in-power-bi-for-over-spotfire-function/m-p/1840018#M39248</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-05-13T06:53:02Z</dc:date>
    </item>
    <item>
      <title>Re: Dax for smiliar function in power bi for over spotfire function</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-smiliar-function-in-power-bi-for-over-spotfire-function/m-p/1840127#M39250</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , if rowid in the incremental column given by sport fire then add index column in power query else use rowid (if it is column)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try a new column&amp;nbsp; DAX: &lt;A href="https://stackoverflow.com/questions/45715963/creating-an-index-column-for-power-bi" target="_blank"&gt;https://stackoverflow.com/questions/45715963/creating-an-index-column-for-power-bi&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if( [index] = maxx(filter(Table, [SFU_MATL_ID] = max([SFU_MATL_ID]) &amp;amp;&amp;amp; [FY_MTH_ID] =max([FY_MTH_ID]) &amp;amp;&amp;amp; [FPC_ID] =max(FPC_ID) ), [index]) ,Max([MRP_AVAIL_USD_AMT]),blank())&lt;/P&gt;</description>
      <pubDate>Thu, 13 May 2021 07:29:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-for-smiliar-function-in-power-bi-for-over-spotfire-function/m-p/1840127#M39250</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2021-05-13T07:29:36Z</dc:date>
    </item>
  </channel>
</rss>

