<?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: Adding Values in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-Values/m-p/2826840#M89889</link>
    <description>&lt;P&gt;Re-adding the filters worked, thank you so much! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 07 Oct 2022 22:32:40 GMT</pubDate>
    <dc:creator>amandabus21</dc:creator>
    <dc:date>2022-10-07T22:32:40Z</dc:date>
    <item>
      <title>Adding Values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-Values/m-p/2826489#M89876</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have 3 visuals I created on a report, they use different measures and filters for each.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way I can get add them up to get a grand total?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example: Sum from all 3 of these charts.&amp;nbsp;&lt;/P&gt;&lt;P&gt;ex) All added up into one ending bar chart for a grand total.&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 Oct 2022 17:39:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-Values/m-p/2826489#M89876</guid>
      <dc:creator>amandabus21</dc:creator>
      <dc:date>2022-10-07T17:39:46Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-Values/m-p/2826640#M89881</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="424505" data-lia-user-login="amandabus21" class="lia-mention lia-mention-user"&gt;amandabus21&lt;/a&gt;&amp;nbsp;Measure = [Measure 1] + [Measure 2] + [Measure 3] ? A Stacked Clustered Column Chart?&lt;/P&gt;</description>
      <pubDate>Fri, 07 Oct 2022 19:19:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-Values/m-p/2826640#M89881</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2022-10-07T19:19:37Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-Values/m-p/2826669#M89884</link>
      <description>&lt;P&gt;Hi Greg&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes that would work, but the graphs are filtered and I would need to the filters need to be added in.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example the First one has a filter where it only includes "Bus" . I need that filter to be in there when caculating the total.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Oct 2022 19:56:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-Values/m-p/2826669#M89884</guid>
      <dc:creator>amandabus21</dc:creator>
      <dc:date>2022-10-07T19:56:40Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-Values/m-p/2826691#M89885</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="424505" data-lia-user-login="amandabus21" class="lia-mention lia-mention-user"&gt;amandabus21&lt;/a&gt;&amp;nbsp;Couple potential ways to do it, just add the filters you have in the other visuals to the final visual. If there are conflicts, you can do things like:&lt;/P&gt;
&lt;P&gt;Measure = CALCULATE([Measure 1], [Vehicle] = "Bus") + CALCULATE([Measure 2], [Vehicle = "Car") + [Measure 3]&lt;/P&gt;</description>
      <pubDate>Fri, 07 Oct 2022 20:18:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-Values/m-p/2826691#M89885</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2022-10-07T20:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-Values/m-p/2826840#M89889</link>
      <description>&lt;P&gt;Re-adding the filters worked, thank you so much! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Oct 2022 22:32:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-Values/m-p/2826840#M89889</guid>
      <dc:creator>amandabus21</dc:creator>
      <dc:date>2022-10-07T22:32:40Z</dc:date>
    </item>
  </channel>
</rss>

