<?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 Measure Error In One Row In A Matrix in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Measure-Error-In-One-Row-In-A-Matrix/m-p/1304648#M22650</link>
    <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 18 Aug 2020 15:38:46 GMT</pubDate>
    <dc:creator>Grizzlydad</dc:creator>
    <dc:date>2020-08-18T15:38:46Z</dc:date>
    <item>
      <title>DAX Measure Error In One Row In A Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Measure-Error-In-One-Row-In-A-Matrix/m-p/1304403#M22634</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Hiya I have written a measure to calculate the time saved by "NILO" compared to "Region" and all seems well in the visual except in the month of June when the calculated difference is incorrect?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Here is the measure&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;NILO Saving (Minutes) = CALCULATE ( SUM ( Tbl_NationalRawData[Minutes Taken To Respond]), Tbl_NationalRawData[Region Responded]= "REGION" ) - CALCULATE ( SUM ( Tbl_NationalRawData[Minutes Taken To Respond]), Tbl_NationalRawData[NILO Responded]= "NILO" )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;The matrix uses the following data but in the row for June, the calculation is wrong.&lt;/DIV&gt;&lt;DIV&gt;Month&amp;nbsp; NILO&amp;nbsp; &amp;nbsp;Region&lt;/DIV&gt;&lt;DIV&gt;July&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;295&amp;nbsp; &amp;nbsp; &amp;nbsp; 102&lt;/DIV&gt;&lt;DIV&gt;June&amp;nbsp; &amp;nbsp; &amp;nbsp; 105&amp;nbsp; &amp;nbsp; &amp;nbsp; 572&amp;nbsp; &amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;May&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;88&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;190&lt;/DIV&gt;&lt;DIV&gt;April&amp;nbsp; &amp;nbsp; &amp;nbsp;169&amp;nbsp; &amp;nbsp; &amp;nbsp; 344&lt;/DIV&gt;&lt;DIV&gt;March&amp;nbsp; &amp;nbsp;155&amp;nbsp; &amp;nbsp; &amp;nbsp;104&lt;/DIV&gt;&lt;DIV&gt;The NILO Saving figure for June in the matrix visual returns 559 when it should be 467 (essentially the difference between the two). The visulisation rows use Month and the Value is NILO Saving (Minutes), which is the measure.&lt;/DIV&gt;&lt;DIV&gt;All the other months return the correct difference in figures except June?&lt;/DIV&gt;&lt;DIV&gt;I have multiple tabs using the same matrix for each region and each one has the wrong difference beingreturned for June only.&lt;/DIV&gt;&lt;DIV&gt;Can anyone help out please?&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Thanks&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Andrew&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 18 Aug 2020 14:23:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Measure-Error-In-One-Row-In-A-Matrix/m-p/1304403#M22634</guid>
      <dc:creator>Grizzlydad</dc:creator>
      <dc:date>2020-08-18T14:23:17Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Measure Error In One Row In A Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Measure-Error-In-One-Row-In-A-Matrix/m-p/1304423#M22636</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="235132" data-lia-user-login="Grizzlydad" class="lia-mention lia-mention-user"&gt;Grizzlydad&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try modifying your DAX expression as follows:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;NILO Saving (Minutes) = CALCULATE ( SUM ( Tbl_NationalRawData[Minutes Taken To Respond]), FILTER(ALLSELECTED(Tbl_NationalRaw), Tbl_NationalRawData[Region Responded]= "REGION" )) - &lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;CALCULATE ( SUM ( Tbl_NationalRawData[Minutes Taken To Respond]), FILTER(ALLSELECTED(Tbl_NationalRaw), Tbl_NationalRawData[NILO Responded]= "NILO" ))&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Pragati&lt;/P&gt;</description>
      <pubDate>Tue, 18 Aug 2020 14:31:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Measure-Error-In-One-Row-In-A-Matrix/m-p/1304423#M22636</guid>
      <dc:creator>Pragati11</dc:creator>
      <dc:date>2020-08-18T14:31:32Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Measure Error In One Row In A Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Measure-Error-In-One-Row-In-A-Matrix/m-p/1304561#M22645</link>
      <description>Can you provide the PBIX file? without that it is difficult to tell why you get the error.</description>
      <pubDate>Tue, 18 Aug 2020 15:15:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Measure-Error-In-One-Row-In-A-Matrix/m-p/1304561#M22645</guid>
      <dc:creator>AntrikshSharma</dc:creator>
      <dc:date>2020-08-18T15:15:59Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Measure Error In One Row In A Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Measure-Error-In-One-Row-In-A-Matrix/m-p/1304611#M22647</link>
      <description>&lt;P&gt;Hi thanks, that has made each month have the same total now which is the total minutes saved year to date, not individual month totals.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Aug 2020 15:29:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Measure-Error-In-One-Row-In-A-Matrix/m-p/1304611#M22647</guid>
      <dc:creator>Grizzlydad</dc:creator>
      <dc:date>2020-08-18T15:29:36Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Measure Error In One Row In A Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Measure-Error-In-One-Row-In-A-Matrix/m-p/1304648#M22650</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Aug 2020 15:38:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Measure-Error-In-One-Row-In-A-Matrix/m-p/1304648#M22650</guid>
      <dc:creator>Grizzlydad</dc:creator>
      <dc:date>2020-08-18T15:38:46Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Measure Error In One Row In A Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Measure-Error-In-One-Row-In-A-Matrix/m-p/1306109#M22693</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="235132" data-lia-user-login="Grizzlydad" class="lia-mention lia-mention-user"&gt;Grizzlydad&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try Troubleshooting your measures&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create Measures&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Measure 1 Region =&amp;nbsp;&lt;SPAN&gt;CALCULATE ( SUM ( Tbl_NationalRawData[Minutes Taken To Respond]), Tbl_NationalRawData[Region Responded]= "REGION" )&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Measure2 NILO =&amp;nbsp;&lt;SPAN&gt;CALCULATE ( SUM ( Tbl_NationalRawData[Minutes Taken To Respond]), Tbl_NationalRawData[NILO Responded]= "NILO" )&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Difference = Measure 1 Region&amp;nbsp; - Measure2 NILO&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See what values are returned by all these 3 measures separately.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Harsh Nathani&lt;BR /&gt;&lt;STRONG&gt;Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2020 05:55:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Measure-Error-In-One-Row-In-A-Matrix/m-p/1306109#M22693</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-19T05:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Measure Error In One Row In A Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Measure-Error-In-One-Row-In-A-Matrix/m-p/1306239#M22700</link>
      <description>&lt;LI-SPOILER&gt;Hi&lt;BR /&gt;&lt;BR /&gt;Where do you want me to try this troubleshooting, I don't understand?&lt;/LI-SPOILER&gt;</description>
      <pubDate>Wed, 19 Aug 2020 06:29:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Measure-Error-In-One-Row-In-A-Matrix/m-p/1306239#M22700</guid>
      <dc:creator>Grizzlydad</dc:creator>
      <dc:date>2020-08-19T06:29:04Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Measure Error In One Row In A Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Measure-Error-In-One-Row-In-A-Matrix/m-p/1306393#M22706</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="235132" data-lia-user-login="Grizzlydad" class="lia-mention lia-mention-user"&gt;Grizzlydad&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have you created these measures.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not against the Month Column in the Visualization Pane, what is the value of thes measures.&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;Regards,&lt;BR /&gt;Harsh Nathani&lt;BR /&gt;&lt;STRONG&gt;Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2020 07:08:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Measure-Error-In-One-Row-In-A-Matrix/m-p/1306393#M22706</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-19T07:08:03Z</dc:date>
    </item>
  </channel>
</rss>

