<?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: Percentage calculation for each months in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4049387#M160633</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot for your reply. What about how to include year please? That is there are several years of data in the table and it look like this formula is combining all the years to one.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;</description>
    <pubDate>Thu, 18 Jul 2024 21:14:26 GMT</pubDate>
    <dc:creator>jimpatel</dc:creator>
    <dc:date>2024-07-18T21:14:26Z</dc:date>
    <item>
      <title>Percentage calculation for each months</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4048384#M160593</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks for looking at my post.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to get below result. I wanted to see how many two's in respective months and divide by total number of rows in that month for percentage. In this instance, for month of feb it will be 2/6 which will be 33% and so on&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using below code to get the result, but it is not working as i am expecting. Any idea please?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;PerMonthPercentage = 
VAR StartDate = EOMONTH(SELECTEDVALUE('TABLE1'[Date]), -1) + 1
VAR EndDate = EOMONTH(SELECTEDVALUE('TABLE1'[Date]), 0)
VAR CountWithCondition = 
    CALCULATE(
        COUNTROWS('TABLE1'),
        'TABLE1'[Date] &amp;gt;= StartDate,
        'TABLE1'[Date] &amp;lt;= EndDate,
        'TABLE1'[Time] = 2
    )
VAR TotalCount = 
    CALCULATE(
        COUNTROWS('TABLE1'),
        'TABLE1'[Date] &amp;gt;= StartDate,
        'TABLE1'[Date] &amp;lt;= EndDate,
        'TABLE1'[Time] &amp;gt;= 0
    )
RETURN
    DIVIDE(CountWithCondition, TotalCount, 0)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;Any idea where i am going wrong please&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2024 11:18:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4048384#M160593</guid>
      <dc:creator>jimpatel</dc:creator>
      <dc:date>2024-07-18T11:18:12Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage calculation for each months</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4048736#M160607</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am not sure if I understood your question correctly, but if you are looking for creating calculated column, please try something like below.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;PerMonthPercentage CC = 
VAR StartDate = EOMONTH('TABLE1'[Date], -1) + 1
VAR EndDate = EOMONTH('TABLE1'[Date], 0)
VAR CountWithCondition = 
    CALCULATE(
        COUNTROWS('TABLE1'), 
        'TABLE1'[Date] &amp;gt;= StartDate,
        'TABLE1'[Date] &amp;lt;= EndDate,
        'TABLE1'[Time] = 2
    )
VAR TotalCount = 
    CALCULATE(
        COUNTROWS('TABLE1'), 
        'TABLE1'[Date] &amp;gt;= StartDate,
        'TABLE1'[Date] &amp;lt;= EndDate,
        'TABLE1'[Time] &amp;gt;= 0
    )
RETURN
    DIVIDE(CountWithCondition, TotalCount, 0)&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 18 Jul 2024 13:56:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4048736#M160607</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2024-07-18T13:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage calculation for each months</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4049049#M160620</link>
      <description>&lt;P&gt;This ?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Create a summary table using the following DAX&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Calc_Table = 

Var _Calc=
SUMMARIZE(Book1,Book1[Date].[Month],"OverAllCount",COUNT(Book1[Time]), "FilteredCount",COUNTROWS(CALCULATETABLE((Book1),Book1[Time]=2)))

Var _Pct_Calc= 
ADDCOLUMNS(_Calc,"_Percentage",IF(DIVIDE([FilteredCount],[OverAllCount],0.00)=BLANK(),0.00,DIVIDE([FilteredCount],[OverAllCount],0.00)))

RETURN _Pct_Calc&lt;/LI-CODE&gt;&lt;P&gt;where Book1 is the source table and Calc_Table is the summary table.&lt;BR /&gt;&lt;BR /&gt;Source data used is as follows :&lt;BR /&gt;Date,Time&lt;BR /&gt;01/02/2024,2&lt;BR /&gt;02/02/2024,2&lt;BR /&gt;03/02/2024,100&lt;BR /&gt;04/02/2024,100&lt;BR /&gt;05/02/2024,100&lt;BR /&gt;06/02/2024,100&lt;BR /&gt;15/05/2024,100&lt;BR /&gt;22/05/2024,100&lt;BR /&gt;02/06/2024,2&lt;BR /&gt;23/06/2024,100&lt;BR /&gt;22/06/2024,100&lt;BR /&gt;28/06/2024,100&lt;BR /&gt;&lt;BR /&gt;Make sure to create a relationship for month columns across the two tables.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;/P&gt;&lt;P&gt;Sachin Nandanwar&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2024 16:11:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4049049#M160620</guid>
      <dc:creator>SachinNandanwar</dc:creator>
      <dc:date>2024-07-18T16:11:28Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage calculation for each months</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4049387#M160633</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot for your reply. What about how to include year please? That is there are several years of data in the table and it look like this formula is combining all the years to one.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2024 21:14:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4049387#M160633</guid>
      <dc:creator>jimpatel</dc:creator>
      <dc:date>2024-07-18T21:14:26Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage calculation for each months</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4049394#M160634</link>
      <description>&lt;P&gt;Thanks a lot for your input.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Much appreciated. But formula works fine if Time =2. In the below example after using your formula, what i am expecting is 70% for April 2024. Reason is there are seven 100 and 3 empty or 0. So 7/10 will be 70%. I hope i have explained it properly. Thanks a lot&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2024 21:20:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4049394#M160634</guid>
      <dc:creator>jimpatel</dc:creator>
      <dc:date>2024-07-18T21:20:57Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage calculation for each months</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4049724#M160648</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="413988" data-lia-user-login="jimpatel" class="lia-mention lia-mention-user"&gt;jimpatel&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;You can &lt;STRONG&gt;update&lt;/STRONG&gt; the formula of measure [PerMonthPercentage] as below to get it:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;PerMonthPercentage =
VAR _date =
    SELECTEDVALUE ( 'TABLE1'[Date] )
VAR StartDate =
    EOMONTH ( _date, -1 ) + 1
VAR EndDate =
    EOMONTH ( _date, 0 )
VAR CountWithCondition =
    CALCULATE (
        COUNT ( 'TABLE1'[Date] ),
        FILTER (
            ALLSELECTED ( 'TABLE1' ),
            'TABLE1'[Date] &amp;gt;= StartDate
                &amp;amp;&amp;amp; 'TABLE1'[Date] &amp;lt;= EndDate
                &amp;amp;&amp;amp; 'TABLE1'[Time] = 2
        )
    )
VAR TotalCount =
    CALCULATE (
        COUNT ( 'TABLE1'[Date] ),
        FILTER (
            ALLSELECTED ( 'TABLE1' ),
            'TABLE1'[Date] &amp;gt;= StartDate
                &amp;amp;&amp;amp; 'TABLE1'[Date] &amp;lt;= EndDate
        )
    )
RETURN
    IF (
        NOT ( ISBLANK ( CountWithCondition ) ),
        DIVIDE ( CountWithCondition, TotalCount, 0 )
    )&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2024 02:55:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4049724#M160648</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-07-19T02:55:23Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage calculation for each months</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4049996#M160663</link>
      <description>&lt;P&gt;Pretty easy. Create a new column that combines Month and Year from your source&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;SPAN&gt;MonthYear =&lt;/SPAN&gt; &lt;SPAN&gt;FORMAT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Book1&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;"MM"&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp; &lt;/SPAN&gt;&lt;SPAN&gt;"_"&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp; &lt;/SPAN&gt;&lt;SPAN&gt;Book1&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;[Year]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;and then change the Summarize table to include this column instead of just Month.&lt;BR /&gt;&lt;BR /&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Calc_Table = 

Var _Calc=
SUMMARIZE(Book1,Book1[MonthYear],"OverAllCount",COUNT(Book1[Time]), "FilteredCount",COUNTROWS(CALCULATETABLE((Book1),Book1[Time]=2)))

Var _Pct_Calc=
ADDCOLUMNS(_Calc,"_Percentage",IF(DIVIDE([FilteredCount],[OverAllCount],0.00)=BLANK(),0.00,DIVIDE([FilteredCount],[OverAllCount],0.00)))

RETURN _Pct_Calc​&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Define a relationship across the two tables on Month_Year.&lt;BR /&gt;&lt;BR /&gt;Sample data used :&lt;BR /&gt;Date,Time&lt;BR /&gt;28/05/2023,2&lt;BR /&gt;20/05/2023,100&lt;BR /&gt;21/05/2023,2&lt;BR /&gt;10/05/2023,2&lt;BR /&gt;01/02/2024,2&lt;BR /&gt;02/02/2024,2&lt;BR /&gt;03/02/2024,100&lt;BR /&gt;04/02/2024,100&lt;BR /&gt;05/02/2024,100&lt;BR /&gt;06/02/2024,100&lt;BR /&gt;15/05/2024,100&lt;BR /&gt;22/05/2024,100&lt;BR /&gt;02/06/2024,2&lt;BR /&gt;23/06/2024,100&lt;BR /&gt;22/06/2024,100&lt;BR /&gt;28/06/2024,100&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Sachin Nandanwar&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2024 06:59:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4049996#M160663</guid>
      <dc:creator>SachinNandanwar</dc:creator>
      <dc:date>2024-07-19T06:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage calculation for each months</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4050058#M160670</link>
      <description>&lt;P&gt;Much appreciated again. I am getting below error. Any idea please?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2024 07:28:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4050058#M160670</guid>
      <dc:creator>jimpatel</dc:creator>
      <dc:date>2024-07-19T07:28:00Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage calculation for each months</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4050063#M160671</link>
      <description>&lt;P&gt;Much appreciated. For some reason it is showing blank data column when i use the same concept formula.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2024 07:28:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4050063#M160671</guid>
      <dc:creator>jimpatel</dc:creator>
      <dc:date>2024-07-19T07:28:36Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage calculation for each months</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4050172#M160677</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="413988" data-lia-user-login="jimpatel" class="lia-mention lia-mention-user"&gt;jimpatel&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;It is important to note that I am creating a &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;measure&lt;/STRONG&gt;&lt;/FONT&gt;, not a calculated column. As you mentioned that all the values returned are blank, could you please provide your sample PBIX file? We can then proceed with troubleshooting and provide you with an appropriate solution.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2024 08:01:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4050172#M160677</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-07-19T08:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage calculation for each months</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4050196#M160681</link>
      <description>&lt;P&gt;Try this.Probably there is a white space issue&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Calc_Table =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;Var&lt;/SPAN&gt; &lt;SPAN&gt;_Calc&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SUMMARIZE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Book1&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;Book1&lt;/SPAN&gt;&lt;SPAN&gt;[MonthYear]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;"OverAllCount"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;COUNT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Book1&lt;/SPAN&gt;&lt;SPAN&gt;[Time]&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;"FilteredCount"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;COUNTROWS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;CALCULATETABLE&lt;/SPAN&gt;&lt;SPAN&gt;((&lt;/SPAN&gt;&lt;SPAN&gt;Book1&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;Book1&lt;/SPAN&gt;&lt;SPAN&gt;[Time]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;2&lt;/SPAN&gt;&lt;SPAN&gt;)))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;Var&lt;/SPAN&gt; &lt;SPAN&gt;_Pct_Calc&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;ADDCOLUMNS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;_Calc&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;"_Percentage"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;DIVIDE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[FilteredCount]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;[OverAllCount]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;0.00&lt;/SPAN&gt;&lt;SPAN&gt;)=&lt;/SPAN&gt;&lt;SPAN&gt;BLANK&lt;/SPAN&gt;&lt;SPAN&gt;(),&lt;/SPAN&gt;&lt;SPAN&gt;0.00&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;DIVIDE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[FilteredCount]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;[OverAllCount]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;0.00&lt;/SPAN&gt;&lt;SPAN&gt;)))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt; &lt;SPAN&gt;_Pct_Calc&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 19 Jul 2024 08:07:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4050196#M160681</guid>
      <dc:creator>SachinNandanwar</dc:creator>
      <dc:date>2024-07-19T08:07:17Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage calculation for each months</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4050556#M160711</link>
      <description>&lt;P&gt;Thanks for your reply. But still same error&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2024 10:37:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4050556#M160711</guid>
      <dc:creator>jimpatel</dc:creator>
      <dc:date>2024-07-19T10:37:50Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage calculation for each months</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4050589#M160713</link>
      <description>&lt;P&gt;This is very strange..It works ok for me&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The only change is the column name compared to yesterdays solution where you didnt had this issue.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;Book1[MonthName] is replaced by&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;Book1[MonthYear]. Thats all.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2024 11:03:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4050589#M160713</guid>
      <dc:creator>SachinNandanwar</dc:creator>
      <dc:date>2024-07-19T11:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage calculation for each months</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4050592#M160714</link>
      <description>&lt;P&gt;Yup. True. Strange. Any idea please?&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2024 11:05:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4050592#M160714</guid>
      <dc:creator>jimpatel</dc:creator>
      <dc:date>2024-07-19T11:05:18Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage calculation for each months</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4050602#M160715</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2024 11:11:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4050602#M160715</guid>
      <dc:creator>SachinNandanwar</dc:creator>
      <dc:date>2024-07-19T11:11:41Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage calculation for each months</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4053284#M160842</link>
      <description>&lt;P&gt;Thanks a lot. Is it possible to attach the solution copy please?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks a lot&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jul 2024 07:11:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4053284#M160842</guid>
      <dc:creator>jimpatel</dc:creator>
      <dc:date>2024-07-22T07:11:52Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage calculation for each months</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4053685#M160867</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="413988" data-lia-user-login="jimpatel" class="lia-mention lia-mention-user"&gt;jimpatel&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;You can download it from here :&amp;nbsp;&lt;A href="https://tmpfiles.org/9603907/sample.pbix" target="_blank"&gt;https://tmpfiles.org/9603907/sample.pbix&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jul 2024 09:57:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4053685#M160867</guid>
      <dc:creator>SachinNandanwar</dc:creator>
      <dc:date>2024-07-22T09:57:24Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage calculation for each months</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4053697#M160869</link>
      <description>&lt;P&gt;Much appreciated&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jul 2024 10:03:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4053697#M160869</guid>
      <dc:creator>jimpatel</dc:creator>
      <dc:date>2024-07-22T10:03:16Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage calculation for each months</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4053790#M160873</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry for one more question, What should i modify to get last 4 months percentage please? That is it will rolling 4 months. If i select July, it will be average of last 4 months percentage please. Any idea ? Really appreciated&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jul 2024 10:47:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4053790#M160873</guid>
      <dc:creator>jimpatel</dc:creator>
      <dc:date>2024-07-22T10:47:49Z</dc:date>
    </item>
    <item>
      <title>Re: Percentage calculation for each months</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4054214#M160892</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry for one more question, What should i modify to get last 4 months percentage please? That is it will rolling 4 months. If i select July, it will be average of last 4 months percentage please. Any idea ? Really appreciated&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jul 2024 14:49:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Percentage-calculation-for-each-months/m-p/4054214#M160892</guid>
      <dc:creator>jimpatel</dc:creator>
      <dc:date>2024-07-22T14:49:17Z</dc:date>
    </item>
  </channel>
</rss>

