<?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: Summing Column on Multiple Category in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summing-Column-on-Multiple-Category/m-p/818595#M5514</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The desired result from below should be Adjusted_consumption approx. 203. However, using the formula above, I'm still getting 55.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 15 Oct 2019 16:08:09 GMT</pubDate>
    <dc:creator>baw556</dc:creator>
    <dc:date>2019-10-15T16:08:09Z</dc:date>
    <item>
      <title>Summing Column on Multiple Category</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summing-Column-on-Multiple-Category/m-p/816417#M5416</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have this table&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I already have a Tabular Model created to be used in Power BI. I was wondering how to calculated the adjusted consumption using DAX based on its formula shown below the table?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 12 Oct 2019 23:00:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summing-Column-on-Multiple-Category/m-p/816417#M5416</guid>
      <dc:creator>baw556</dc:creator>
      <dc:date>2019-10-12T23:00:51Z</dc:date>
    </item>
    <item>
      <title>Re: Summing Column on Multiple Category</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summing-Column-on-Multiple-Category/m-p/816493#M5417</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="177916" data-lia-user-login="baw556" class="lia-mention lia-mention-user"&gt;baw556&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you want it across all asset types and classes? If so, place tis measure in a card visual:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Measure =
VAR Constant_ = 4.3456
RETURN
    CALCULATE ( SUM ( Table1[Consumption] ), Table1[Fuel] = "Electricity" )
        + CALCULATE ( SUM ( Table1[Consumption] ), Table1[Fuel] = "Gas" ) * Constant_
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Please mark the question solved when done and consider giving kudos if posts are helpful.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Cheers&amp;nbsp;&amp;nbsp;&lt;IMG src="https://community.fabric.microsoft.com/html/badge_icons/SU18_powerbi_badge.png" border="0" alt="Datanaut" width="64" height="64" /&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 13 Oct 2019 09:20:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summing-Column-on-Multiple-Category/m-p/816493#M5417</guid>
      <dc:creator>AlB</dc:creator>
      <dc:date>2019-10-13T09:20:08Z</dc:date>
    </item>
    <item>
      <title>Re: Summing Column on Multiple Category</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summing-Column-on-Multiple-Category/m-p/818589#M5513</link>
      <description>&lt;P&gt;Thanks AIB for your response and I apologize for late reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, I wanted to aggregate accross asset type and class.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I appplied the formula, it only aggregates the valus for Electricity and doesn't include the secod part of the formula (Gas cons. * constant)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any thoughts?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Baw556&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2019 16:05:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summing-Column-on-Multiple-Category/m-p/818589#M5513</guid>
      <dc:creator>baw556</dc:creator>
      <dc:date>2019-10-15T16:05:36Z</dc:date>
    </item>
    <item>
      <title>Re: Summing Column on Multiple Category</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summing-Column-on-Multiple-Category/m-p/818595#M5514</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The desired result from below should be Adjusted_consumption approx. 203. However, using the formula above, I'm still getting 55.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2019 16:08:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Summing-Column-on-Multiple-Category/m-p/818595#M5514</guid>
      <dc:creator>baw556</dc:creator>
      <dc:date>2019-10-15T16:08:09Z</dc:date>
    </item>
  </channel>
</rss>

