<?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: Table Total show incorrect value than the visual total in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Table-Total-show-incorrect-value-than-the-visual-total/m-p/3653631#M141552</link>
    <description>&lt;P&gt;Thanx every one for your reply and solutions&lt;BR /&gt;I have solved it myself&lt;BR /&gt;thnx&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 23 Jan 2024 09:31:02 GMT</pubDate>
    <dc:creator>Machiyara1</dc:creator>
    <dc:date>2024-01-23T09:31:02Z</dc:date>
    <item>
      <title>Table Total show incorrect value than the visual total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Table-Total-show-incorrect-value-than-the-visual-total/m-p/3637143#M140729</link>
      <description>&lt;P&gt;I have 3 Tables&lt;BR /&gt;1. List of Items: which has all the names of Products&lt;BR /&gt;2. Sales: it has datewise sales at different rates depending on the customer, our Selling rates are not fixed.&lt;BR /&gt;3. Purchases: We purchase Products in bulk from time to time at different rates.&lt;BR /&gt;&lt;img /&gt;&lt;img /&gt;&lt;img /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I have attached tables structure&lt;BR /&gt;&lt;BR /&gt;I have created a relation as follows&lt;BR /&gt;Sales(many) to List(1)&lt;BR /&gt;List(1) to Purchase(Many)&lt;BR /&gt;&lt;img /&gt;&lt;BR /&gt;this is my Power Bi Table&amp;nbsp;&lt;BR /&gt;its total according to the visual values should be 219000+ but it's coming to 214293&lt;BR /&gt;what is the issue&lt;BR /&gt;I tried trying many things&lt;BR /&gt;please guide me&amp;nbsp;&lt;BR /&gt;thnx&lt;/P&gt;</description>
      <pubDate>Sat, 13 Jan 2024 11:18:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Table-Total-show-incorrect-value-than-the-visual-total/m-p/3637143#M140729</guid>
      <dc:creator>Machiyara1</dc:creator>
      <dc:date>2024-01-13T11:18:44Z</dc:date>
    </item>
    <item>
      <title>Re: Table Total show incorrect value than the visual total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Table-Total-show-incorrect-value-than-the-visual-total/m-p/3637904#M140788</link>
      <description>&lt;P&gt;Please provide sample data that covers your issue or question &lt;STRONG&gt;completely&lt;/STRONG&gt;, in a &lt;STRONG&gt;usable&lt;/STRONG&gt; format (not as a screenshot).&lt;BR /&gt;&lt;BR /&gt;Do not include sensitive information or anything not related to the issue or question. &lt;BR /&gt;&lt;BR /&gt;If you are unsure how to upload data please refer to &lt;A href="https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216&lt;/A&gt; &lt;BR /&gt;&lt;BR /&gt;Please show the expected outcome based on the sample data you provided. &lt;BR /&gt;&lt;BR /&gt;Want faster answers? &lt;A href="https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jan 2024 00:32:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Table-Total-show-incorrect-value-than-the-visual-total/m-p/3637904#M140788</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-01-15T00:32:23Z</dc:date>
    </item>
    <item>
      <title>Re: Table Total show incorrect value than the visual total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Table-Total-show-incorrect-value-than-the-visual-total/m-p/3638270#M140813</link>
      <description>&lt;P&gt;Hi&amp;nbsp; &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="674128" data-lia-user-login="Machiyara1" class="lia-mention lia-mention-user"&gt;Machiyara1&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;May I ask if the incorrect totals you are referring to are the incorrect totals for the Total rows that are placed on the form visual?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Measure follows the context of the "Total" row and is calculated in that context. Therefore, using a measure in a column of a table visualization may have unexpected values in the "Total" column.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use the following measure, using the IF()+HASONEVALUE() function, to determine if it is Total, and if it is, you can calculate it according to your own needs, such as Average, Sum, etc.&lt;/P&gt;
&lt;P&gt;You can try using the following measure.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure =
var _table=SUMMARIZE('Table','Table'[Items],"Value",[CODS X])
return
IF(
    HASONEVALUE('Table'[Items]),[CODS X],SUMX(_table,[Value]))&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Liu Yang&lt;/P&gt;
&lt;P&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;EM&gt;Accept it as the solution&lt;/EM&gt; to help the other members find it more quickly&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jan 2024 07:03:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Table-Total-show-incorrect-value-than-the-visual-total/m-p/3638270#M140813</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-01-15T07:03:03Z</dc:date>
    </item>
    <item>
      <title>Re: Table Total show incorrect value than the visual total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Table-Total-show-incorrect-value-than-the-visual-total/m-p/3653628#M141550</link>
      <description>&lt;P&gt;THNX FOR YOUR SUPPORT AND REPLY&lt;BR /&gt;i SOLVED IT MYSELF&lt;BR /&gt;THNX&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2024 09:29:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Table-Total-show-incorrect-value-than-the-visual-total/m-p/3653628#M141550</guid>
      <dc:creator>Machiyara1</dc:creator>
      <dc:date>2024-01-23T09:29:38Z</dc:date>
    </item>
    <item>
      <title>Re: Table Total show incorrect value than the visual total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Table-Total-show-incorrect-value-than-the-visual-total/m-p/3653629#M141551</link>
      <description>&lt;P&gt;THNX FOR UR SUPPORT&amp;nbsp;&lt;BR /&gt;i HAVE SOLVED IT MYSELF&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2024 09:30:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Table-Total-show-incorrect-value-than-the-visual-total/m-p/3653629#M141551</guid>
      <dc:creator>Machiyara1</dc:creator>
      <dc:date>2024-01-23T09:30:06Z</dc:date>
    </item>
    <item>
      <title>Re: Table Total show incorrect value than the visual total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Table-Total-show-incorrect-value-than-the-visual-total/m-p/3653631#M141552</link>
      <description>&lt;P&gt;Thanx every one for your reply and solutions&lt;BR /&gt;I have solved it myself&lt;BR /&gt;thnx&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2024 09:31:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Table-Total-show-incorrect-value-than-the-visual-total/m-p/3653631#M141552</guid>
      <dc:creator>Machiyara1</dc:creator>
      <dc:date>2024-01-23T09:31:02Z</dc:date>
    </item>
  </channel>
</rss>

