<?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: Summarize total value of order on each row in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-total-value-of-order-on-each-row/m-p/3979839#M154302</link>
    <description>&lt;P&gt;&lt;SPAN&gt;Calculate(Omsättning2, All(Ordernr))&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 07 Jun 2024 12:25:32 GMT</pubDate>
    <dc:creator>olgad</dc:creator>
    <dc:date>2024-06-07T12:25:32Z</dc:date>
    <item>
      <title>Summarize total value of order on each row</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-total-value-of-order-on-each-row/m-p/3979408#M154292</link>
      <description>&lt;P&gt;Hi Forum!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Need some help with a simple DAX formula calcualting the total order value of the ordernumber as a measure. I can't create my own tables due to restrictions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas?&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>Fri, 07 Jun 2024 10:26:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-total-value-of-order-on-each-row/m-p/3979408#M154292</guid>
      <dc:creator>Henrikwcarlsson</dc:creator>
      <dc:date>2024-06-07T10:26:06Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize total value of order on each row</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-total-value-of-order-on-each-row/m-p/3979781#M154297</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;BR /&gt;Calculate(Sum(Value), All(Ordernr))&lt;BR /&gt;&lt;BR /&gt;Sum(Value)-the values of your orders&lt;BR /&gt;All(either the whole table where the order numbers are residing or just the order number column) depends what you want to achieve. Choose between All() and Allselected(), All() for all the order numbers, Allselected() for all the selected, filtered orders.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jun 2024 12:08:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-total-value-of-order-on-each-row/m-p/3979781#M154297</guid>
      <dc:creator>olgad</dc:creator>
      <dc:date>2024-06-07T12:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize total value of order on each row</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-total-value-of-order-on-each-row/m-p/3979787#M154299</link>
      <description>&lt;P&gt;measure = calculate(sum(table,value),allexcept(table,order no.))&lt;BR /&gt;&lt;BR /&gt;If this works, Please accept as solution.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jun 2024 12:10:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-total-value-of-order-on-each-row/m-p/3979787#M154299</guid>
      <dc:creator>Rupak_bi</dc:creator>
      <dc:date>2024-06-07T12:10:08Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize total value of order on each row</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-total-value-of-order-on-each-row/m-p/3979810#M154300</link>
      <description>&lt;P&gt;Sadly this does not work or I'm doing something wrong. I belive the problem is that "Omsättning2" which is the value I wan't to calculate only exists as a measure and not as a table?&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jun 2024 12:17:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-total-value-of-order-on-each-row/m-p/3979810#M154300</guid>
      <dc:creator>Henrikwcarlsson</dc:creator>
      <dc:date>2024-06-07T12:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize total value of order on each row</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-total-value-of-order-on-each-row/m-p/3979832#M154301</link>
      <description>&lt;P&gt;Ok, try following formula. If still not works, share some sample data.&lt;/P&gt;&lt;P&gt;measure = Sumx(allexcept(table, order no.),&amp;nbsp;&lt;SPAN&gt;"Omsättning2 measure)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jun 2024 12:22:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-total-value-of-order-on-each-row/m-p/3979832#M154301</guid>
      <dc:creator>Rupak_bi</dc:creator>
      <dc:date>2024-06-07T12:22:45Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize total value of order on each row</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-total-value-of-order-on-each-row/m-p/3979839#M154302</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Calculate(Omsättning2, All(Ordernr))&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jun 2024 12:25:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-total-value-of-order-on-each-row/m-p/3979839#M154302</guid>
      <dc:creator>olgad</dc:creator>
      <dc:date>2024-06-07T12:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize total value of order on each row</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-total-value-of-order-on-each-row/m-p/3982694#M154419</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="585139" data-lia-user-login="Henrikwcarlsson" class="lia-mention lia-mention-user"&gt;Henrikwcarlsson&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thanks for&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="254062" data-lia-user-login="olgad" class="lia-mention lia-mention-user"&gt;olgad&lt;/a&gt;&amp;nbsp;an&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="583487" data-lia-user-login="Rupak_bi" class="lia-mention lia-mention-user"&gt;Rupak_bi&lt;/a&gt;&amp;nbsp;reply. You can refer to their method, or you can try this.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;allSales =
CALCULATE ( [sales], ALL () )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Yang&lt;BR /&gt;Community Support Team&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If there is any post&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&lt;BR /&gt;If I misunderstand your needs or you still have problems on it, please feel free to let us know.&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Thanks a lot!&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.powerbi.com%2Ft5%2FCommunity-Blog%2FHow-to-Get-Your-Question-Answered-Quickly%2Fba-p%2F38490&amp;amp;data=05%7C01%7Cv-yaningyang%40microsoft.com%7Cce16d19809414d9f960208dbf1755128%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C638369258411601530%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;amp;sdata=oBisEpJnsk4p%2BcSV0F8sZ%2BFQHR%2FRvYA8sUWZIEcjQ4o%3D&amp;amp;reserved=0" target="_blank"&gt;How to get your questions answered quickly&lt;/A&gt;&amp;nbsp;--&amp;nbsp;&lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.powerbi.com%2Ft5%2FCommunity-Blog%2FHow-to-provide-sample-data-in-the-Power-BI-Forum%2Fba-p%2F963216&amp;amp;data=05%7C01%7Cv-yaningyang%40microsoft.com%7Cce16d19809414d9f960208dbf1755128%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C638369258411609718%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;amp;sdata=sCaEt5xd5uTLXCby0%2B1XhR9V7RXxZLDCF088%2F9u%2FOUU%3D&amp;amp;reserved=0" target="_blank"&gt;&amp;nbsp;How to provide sample data in the Power BI Forum&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2024 06:28:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summarize-total-value-of-order-on-each-row/m-p/3982694#M154419</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-06-10T06:28:35Z</dc:date>
    </item>
  </channel>
</rss>

