<?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: Measure Hierarchy in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Hierarchy/m-p/3212171#M117185</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="405743" data-lia-user-login="Puja" class="lia-mention lia-mention-user"&gt;Puja&lt;/a&gt;&amp;nbsp;Please go through this i hope this&amp;nbsp; helps you&amp;nbsp;&lt;BR /&gt;#First Link for bar Chart&lt;BR /&gt;&lt;A href="https://youtu.be/UnG0u8J0pSc" target="_blank" rel="noopener"&gt;https://youtu.be/UnG0u8J0pSc&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://youtu.be/2y2VP6i8S8c" target="_blank" rel="noopener"&gt;https://youtu.be/2y2VP6i8S8c&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;BR /&gt;Thank you!!&lt;/P&gt;</description>
    <pubDate>Sat, 29 Apr 2023 05:39:26 GMT</pubDate>
    <dc:creator>Mahesh0016</dc:creator>
    <dc:date>2023-04-29T05:39:26Z</dc:date>
    <item>
      <title>Measure Hierarchy</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Hierarchy/m-p/3211924#M117168</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;Is this measure hierarchy possible to implement ?&lt;/P&gt;&lt;P&gt;I have 3 measures for each season.&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial black,avant garde" color="#FF0000"&gt;&lt;U&gt;&lt;STRONG&gt;Season 1&lt;/STRONG&gt;&lt;/U&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Measure 1&lt;BR /&gt;Measure 2&lt;BR /&gt;Measure 3&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;FONT face="arial black,avant garde" color="#FF0000"&gt;Season 2&lt;/FONT&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;Measure 1&lt;BR /&gt;Measure 2&lt;BR /&gt;Measure 3&lt;BR /&gt;When user selects Season 1&amp;nbsp; I want to&amp;nbsp; &amp;nbsp;3 measures selected in the BAR chart.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2023 21:09:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Hierarchy/m-p/3211924#M117168</guid>
      <dc:creator>Puja</dc:creator>
      <dc:date>2023-04-28T21:09:48Z</dc:date>
    </item>
    <item>
      <title>Re: Measure Hierarchy</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Hierarchy/m-p/3212171#M117185</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="405743" data-lia-user-login="Puja" class="lia-mention lia-mention-user"&gt;Puja&lt;/a&gt;&amp;nbsp;Please go through this i hope this&amp;nbsp; helps you&amp;nbsp;&lt;BR /&gt;#First Link for bar Chart&lt;BR /&gt;&lt;A href="https://youtu.be/UnG0u8J0pSc" target="_blank" rel="noopener"&gt;https://youtu.be/UnG0u8J0pSc&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://youtu.be/2y2VP6i8S8c" target="_blank" rel="noopener"&gt;https://youtu.be/2y2VP6i8S8c&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;BR /&gt;Thank you!!&lt;/P&gt;</description>
      <pubDate>Sat, 29 Apr 2023 05:39:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Hierarchy/m-p/3212171#M117185</guid>
      <dc:creator>Mahesh0016</dc:creator>
      <dc:date>2023-04-29T05:39:26Z</dc:date>
    </item>
    <item>
      <title>Re: Measure Hierarchy</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Hierarchy/m-p/3212227#M117187</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="405743" data-lia-user-login="Puja" class="lia-mention lia-mention-user"&gt;Puja&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;actully you don't need to cream a calculation group. Simply create a single column disconnected table that contains measure names. Then create a ResultMeasure that uses a SWITCH statement to switch between different measures based on the MeasureName in the current filter context. In the chart place only ResultMeasure in the values and Measures[MeasureName] in the x-axis&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Measures =
SELECTCOLUMNS (
    "MeasureName",
    { "Measuure 1", "Measuure 2", "Measuure 3" },
    [Value]
)&lt;/LI-CODE&gt;&lt;LI-CODE lang="javascript"&gt;ResultMeasure =
SUMX (
    VALUES ( Measures[MeasureName] ),
    SWITCH (
        Measures[MeasureName],
        "Measure 1", [Measure 1],
        "Measure 2", [Measure 2],
        "Measure 3", [Measure 3]
    )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Sat, 29 Apr 2023 10:00:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-Hierarchy/m-p/3212227#M117187</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-04-29T10:00:28Z</dc:date>
    </item>
  </channel>
</rss>

