<?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: How to return a value without aggregating the sum of each rows by using new measure or dax? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-return-a-value-without-aggregating-the-sum-of-each-rows/m-p/3195733#M116012</link>
    <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="479972" data-lia-user-login="ironboy0418" class="lia-mention lia-mention-user"&gt;ironboy0418&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;there are many ways:&lt;/P&gt;&lt;P&gt;you can just plot a table visual with category and price columns. Choose min, max or average for price column.&lt;/P&gt;&lt;P&gt;or&lt;BR /&gt;plot a table visual with category columns and a measure like:&lt;BR /&gt;measure = MIN(TableName[Price])&lt;/P&gt;&lt;P&gt;or&lt;BR /&gt;create a calculated table like:&lt;BR /&gt;Table =&lt;BR /&gt;ADDCOLUMNS(&lt;BR /&gt;VALUES(TableName[Category]),&lt;BR /&gt;"Price",&lt;BR /&gt;CALCULATE(MIN(TableName[Price]))&lt;BR /&gt;)&lt;/P&gt;</description>
    <pubDate>Wed, 19 Apr 2023 12:12:51 GMT</pubDate>
    <dc:creator>FreemanZ</dc:creator>
    <dc:date>2023-04-19T12:12:51Z</dc:date>
    <item>
      <title>How to return a value without aggregating the sum of each rows by using new measure or dax?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-return-a-value-without-aggregating-the-sum-of-each-rows/m-p/3195617#M116003</link>
      <description>&lt;P&gt;I have a sample table in Power BI that has repeating value for price. The objective is to return the prices for each category without summing-up all the values in row price.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sample table:&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;Desired output:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Apr 2023 11:03:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-return-a-value-without-aggregating-the-sum-of-each-rows/m-p/3195617#M116003</guid>
      <dc:creator>ironboy0418</dc:creator>
      <dc:date>2023-04-19T11:03:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to return a value without aggregating the sum of each rows by using new measure or dax?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-return-a-value-without-aggregating-the-sum-of-each-rows/m-p/3195729#M116011</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Why don't you just a table visual, add Category &amp;amp; Price to its Values field and then choose Average or Median in the options for aggregation?&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT size="2"&gt;Best Regards, &lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT size="2"&gt;Alexander&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT size="2"&gt;&lt;A href="https://youtube.com/@powerbi-vlog" target="_blank"&gt;My YouTube vlog in English&lt;/A&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT size="2"&gt;&lt;A href="https://youtube.com/@pbi-vlog" target="_blank"&gt;My YouTube vlog in Russian&lt;/A&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Apr 2023 12:08:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-return-a-value-without-aggregating-the-sum-of-each-rows/m-p/3195729#M116011</guid>
      <dc:creator>barritown</dc:creator>
      <dc:date>2023-04-19T12:08:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to return a value without aggregating the sum of each rows by using new measure or dax?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-return-a-value-without-aggregating-the-sum-of-each-rows/m-p/3195733#M116012</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="479972" data-lia-user-login="ironboy0418" class="lia-mention lia-mention-user"&gt;ironboy0418&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;there are many ways:&lt;/P&gt;&lt;P&gt;you can just plot a table visual with category and price columns. Choose min, max or average for price column.&lt;/P&gt;&lt;P&gt;or&lt;BR /&gt;plot a table visual with category columns and a measure like:&lt;BR /&gt;measure = MIN(TableName[Price])&lt;/P&gt;&lt;P&gt;or&lt;BR /&gt;create a calculated table like:&lt;BR /&gt;Table =&lt;BR /&gt;ADDCOLUMNS(&lt;BR /&gt;VALUES(TableName[Category]),&lt;BR /&gt;"Price",&lt;BR /&gt;CALCULATE(MIN(TableName[Price]))&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Wed, 19 Apr 2023 12:12:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-return-a-value-without-aggregating-the-sum-of-each-rows/m-p/3195733#M116012</guid>
      <dc:creator>FreemanZ</dc:creator>
      <dc:date>2023-04-19T12:12:51Z</dc:date>
    </item>
  </channel>
</rss>

