<?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 Difference between the Months different count when Interest rate changes from Previous to Current. in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Difference-between-the-Months-different-count-when-Interest-rate/m-p/3790947#M148126</link>
    <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to calculate the month's&amp;nbsp;different count when the Interest rate changes from Previous interest to Current interest changes. Please help&lt;/P&gt;&lt;P&gt;Here Interest rate =&lt;STRONG&gt;&amp;nbsp;&lt;SPAN class=""&gt;INIT_DPOS_INT_PCT&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Below is the screenshot for reference&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;img /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Calculations need to be worked on the DAX column dynamically. Below is an example of&amp;nbsp;Previous interest to Current interest month's difference count.&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 26 Mar 2024 07:51:36 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-03-26T07:51:36Z</dc:date>
    <item>
      <title>Difference between the Months different count when Interest rate changes from Previous to Current.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Difference-between-the-Months-different-count-when-Interest-rate/m-p/3790947#M148126</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to calculate the month's&amp;nbsp;different count when the Interest rate changes from Previous interest to Current interest changes. Please help&lt;/P&gt;&lt;P&gt;Here Interest rate =&lt;STRONG&gt;&amp;nbsp;&lt;SPAN class=""&gt;INIT_DPOS_INT_PCT&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Below is the screenshot for reference&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;img /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Calculations need to be worked on the DAX column dynamically. Below is an example of&amp;nbsp;Previous interest to Current interest month's difference count.&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2024 07:51:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Difference-between-the-Months-different-count-when-Interest-rate/m-p/3790947#M148126</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-03-26T07:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between the Months different count when Interest rate changes from Previous to Current.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Difference-between-the-Months-different-count-when-Interest-rate/m-p/3791200#M148134</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;not sure to have understood. Did you just need to calculate the difference between 2 dates?&lt;/P&gt;&lt;P&gt;There's a DAX formula.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Difference Count = DATEDIFF (last_inst_captil, last_update, month)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If it not works in a measure you can just add SELECTEDVALUE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Difference Count = DATEDIFF (SELECTEDVALUE(last_inst_captil),SELECTEDVALUE( last_update), month)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;Please let me know if this solves you problem, if so please mark as accepted solution&lt;/P&gt;&lt;P&gt;bye&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2024 09:51:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Difference-between-the-Months-different-count-when-Interest-rate/m-p/3791200#M148134</guid>
      <dc:creator>Gabry</dc:creator>
      <dc:date>2024-03-26T09:51:53Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between the Months different count when Interest rate changes from Previous to Current.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Difference-between-the-Months-different-count-when-Interest-rate/m-p/3791271#M148136</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;Not sure if I correctly understand the requirement but you may try&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Difference Count =
CALCULATE ( DISTINCTCOUNT ( 'Table'[INIT_DPOS_INT_PCT] ), ALLSELECTED () )&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 26 Mar 2024 10:26:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Difference-between-the-Months-different-count-when-Interest-rate/m-p/3791271#M148136</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2024-03-26T10:26:57Z</dc:date>
    </item>
  </channel>
</rss>

