<?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: Need To help to create a measure on top of Measures in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-To-help-to-create-a-measure-on-top-of-Measures/m-p/4065635#M161401</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="515924" data-lia-user-login="sb48846" class="lia-mention lia-mention-user"&gt;sb48846&lt;/a&gt;&amp;nbsp; If it worked, please mark it as a solution. Thanks!&lt;/P&gt;</description>
    <pubDate>Sun, 28 Jul 2024 16:45:12 GMT</pubDate>
    <dc:creator>MalkhazTsagarel</dc:creator>
    <dc:date>2024-07-28T16:45:12Z</dc:date>
    <item>
      <title>Need To help to create a measure on top of Measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-To-help-to-create-a-measure-on-top-of-Measures/m-p/4061961#M161235</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need your help on creating measure on top of measure. Please see below date where following fields are measures.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;Mesures List:&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Bid Price (&lt;SPAN&gt;Formula:&amp;nbsp;=CALCULATE(SUM('Lowest Price Option'[Daily Price]))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Qty Bid&amp;nbsp; (&lt;SPAN&gt;Formula: =CALCULATE(SUM('Lowest Price Option'[Qunatity Bid]))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Total Qty bid by all Suppliers &lt;SPAN&gt;(Formula: =&amp;nbsp;CALCULATE(SUM(Bid[Demand]), ALLSELECTED(Bid)))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;QtySplit% by Mkt&amp;amp;Supplier&amp;nbsp;&lt;SPAN&gt; (Formula: =&amp;nbsp;Divide([Qty Bid],[Total Qty bid by all Suppliers])&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Qty Weig.price by Mkt&amp;amp;Supplier (&lt;SPAN&gt;Formula : = [Bid Price]*[QtySplit% by Mkt&amp;amp;Supplier]&lt;/SPAN&gt;)&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Trying to create new measure called "&lt;STRONG&gt;NewMeasure(Group by BidYear,Market&amp;amp;Date)&lt;/STRONG&gt;" on top of measure "Qty Weig.price by Mkt&amp;amp;Supplier" and this new measure should group the totals based on Bid Year, Market, Price Date&amp;amp; Product.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need expected result in column "L"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Suman.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jul 2024 16:54:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-To-help-to-create-a-measure-on-top-of-Measures/m-p/4061961#M161235</guid>
      <dc:creator>sb48846</dc:creator>
      <dc:date>2024-07-25T16:54:55Z</dc:date>
    </item>
    <item>
      <title>Re: Need To help to create a measure on top of Measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-To-help-to-create-a-measure-on-top-of-Measures/m-p/4062067#M161243</link>
      <description>&lt;P&gt;Hey,&amp;nbsp;&lt;BR /&gt;Try this dax code for a new measure:&lt;BR /&gt;NewMeasure =&lt;BR /&gt;SUMX(&lt;BR /&gt;SUMMARIZE(&lt;BR /&gt;'Bid',&lt;BR /&gt;'Bid'[Bid Year],&lt;BR /&gt;'Bid'[Market],&lt;BR /&gt;'Bid'[Price Date],&lt;BR /&gt;'Bid'[Product],&lt;BR /&gt;"Qty Weig.price by Mkt&amp;amp;Supplier", [Qty Weig.price by Mkt&amp;amp;Supplier]&lt;BR /&gt;),&lt;BR /&gt;[Qty Weig.price by Mkt&amp;amp;Supplier]&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;I use Summarize to create a table grouped by the specified columns&amp;nbsp; and then to sum the 'Qty Weig.price by Mkt&amp;amp;Supplier'&amp;nbsp;for each group using Sumx.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jul 2024 18:14:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-To-help-to-create-a-measure-on-top-of-Measures/m-p/4062067#M161243</guid>
      <dc:creator>MalkhazTsagarel</dc:creator>
      <dc:date>2024-07-25T18:14:01Z</dc:date>
    </item>
    <item>
      <title>Re: Need To help to create a measure on top of Measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-To-help-to-create-a-measure-on-top-of-Measures/m-p/4063746#M161322</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="780976" data-lia-user-login="MalkhazTsagarel" class="lia-mention lia-mention-user"&gt;MalkhazTsagarel&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried your suggestion on "Total Qty bid by All Suppliers" measure first. It is not sumarizing the Qty Bid as expected. Please get the&amp;nbsp; Pbix file from below link.&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive.google.com/file/d/1_-qKhnDMCtkdLT869axnLTOw9m4Wo645/view?usp=drive_link" target="_blank"&gt;https://drive.google.com/file/d/1_-qKhnDMCtkdLT869axnLTOw9m4Wo645/view?usp=drive_link&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See the below output which i am getting.&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,&lt;/P&gt;&lt;P&gt;Suman.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jul 2024 12:21:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-To-help-to-create-a-measure-on-top-of-Measures/m-p/4063746#M161322</guid>
      <dc:creator>sb48846</dc:creator>
      <dc:date>2024-07-26T12:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: Need To help to create a measure on top of Measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-To-help-to-create-a-measure-on-top-of-Measures/m-p/4064927#M161373</link>
      <description>&lt;DIV&gt;&lt;SPAN&gt;This will give the result:&lt;BR /&gt;Total Qty bid &lt;/SPAN&gt;&lt;SPAN&gt;by&lt;/SPAN&gt;&lt;SPAN&gt; All Suppliers =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;[Qty Bid]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;ALLSELECTED&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Sample Data'&lt;/SPAN&gt;&lt;SPAN&gt;[Supplier]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;'Sample Data'&lt;/SPAN&gt;&lt;SPAN&gt;[Daily Bid Price]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;'Sample Data'&lt;/SPAN&gt;&lt;SPAN&gt;[Location]&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;))&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;img /&gt;&lt;P&gt;If it works, please make it as solution&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 27 Jul 2024 12:15:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-To-help-to-create-a-measure-on-top-of-Measures/m-p/4064927#M161373</guid>
      <dc:creator>MalkhazTsagarel</dc:creator>
      <dc:date>2024-07-27T12:15:03Z</dc:date>
    </item>
    <item>
      <title>Re: Need To help to create a measure on top of Measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-To-help-to-create-a-measure-on-top-of-Measures/m-p/4065635#M161401</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="515924" data-lia-user-login="sb48846" class="lia-mention lia-mention-user"&gt;sb48846&lt;/a&gt;&amp;nbsp; If it worked, please mark it as a solution. Thanks!&lt;/P&gt;</description>
      <pubDate>Sun, 28 Jul 2024 16:45:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-To-help-to-create-a-measure-on-top-of-Measures/m-p/4065635#M161401</guid>
      <dc:creator>MalkhazTsagarel</dc:creator>
      <dc:date>2024-07-28T16:45:12Z</dc:date>
    </item>
  </channel>
</rss>

