<?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: Multiple Measures in matrix on same level in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Multiple-Measures-in-matrix-on-same-level/m-p/3977569#M53192</link>
    <description>&lt;P&gt;Thanks for your time, But if you see screenshot, QTD and YTD are 2 different measures , They are not related to YYYY- MM as shown in Column Headers. First I want to show month wise data and then QTD and YTD, That should work as per slicer.&lt;/P&gt;</description>
    <pubDate>Thu, 06 Jun 2024 16:16:53 GMT</pubDate>
    <dc:creator>Striker0794</dc:creator>
    <dc:date>2024-06-06T16:16:53Z</dc:date>
    <item>
      <title>Multiple Measures in matrix on same level</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Multiple-Measures-in-matrix-on-same-level/m-p/3977551#M53188</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I got stuck into one Business requirment, I want to show Multiple measures on the same level of Matrix as seen in below image. Here Month Wise Data Should Be shown by one measure, and then QTD and YTD should be a different measure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now, I am struggling to get these 2 measures on same level.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Striker0794_0-1717689168612.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1112450iD606BA89A84C01FD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Striker0794_0-1717689168612.png" alt="Striker0794_0-1717689168612.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Please help me on this, I will be very thankfull.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2024 15:57:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Multiple-Measures-in-matrix-on-same-level/m-p/3977551#M53188</guid>
      <dc:creator>Striker0794</dc:creator>
      <dc:date>2024-06-06T15:57:42Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Measures in matrix on same level</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Multiple-Measures-in-matrix-on-same-level/m-p/3977560#M53189</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/755888"&gt;@Striker0794&lt;/a&gt;&amp;nbsp;Not sure I fully understand but maybe switch the measures to rows?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2024 16:05:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Multiple-Measures-in-matrix-on-same-level/m-p/3977560#M53189</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2024-06-06T16:05:38Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Measures in matrix on same level</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Multiple-Measures-in-matrix-on-same-level/m-p/3977569#M53192</link>
      <description>&lt;P&gt;Thanks for your time, But if you see screenshot, QTD and YTD are 2 different measures , They are not related to YYYY- MM as shown in Column Headers. First I want to show month wise data and then QTD and YTD, That should work as per slicer.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2024 16:16:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Multiple-Measures-in-matrix-on-same-level/m-p/3977569#M53192</guid>
      <dc:creator>Striker0794</dc:creator>
      <dc:date>2024-06-06T16:16:53Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Measures in matrix on same level</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Multiple-Measures-in-matrix-on-same-level/m-p/3985547#M53306</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/313"&gt;@Greg_Deckler&lt;/a&gt;&amp;nbsp;Thanks for your contribution on this thread.&lt;/P&gt;
&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/755888"&gt;@Striker0794&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Base on your description, it seems that you want to add the additional measures [QTD],[YTD] and [YIM] with the same level as the value field. And these 3 measures not be divided into the date. Am I right? If yes, you can follow the steps below to get it:&lt;/P&gt;
&lt;P&gt;1. Create a &lt;STRONG&gt;calculated column&lt;/STRONG&gt; as below to get the attributes base on the date("QTD","YTD","orignal month")&lt;/P&gt;
&lt;P&gt;2. Create a measure as below to get the values for different attributes&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure =
VAR _attr =
    SELECTEDVALUE ( 'Table'[Attribute] )
RETURN
    CALCULATE (
        SUM ( 'Table'[value] ),
        FILTER ( 'Table', 'Table'[Attribute] = _attr )
    )&lt;/LI-CODE&gt;
&lt;P&gt;3. Add the new calculated column onto the matrix to &lt;FONT color="#FF0000"&gt;replace&lt;/FONT&gt; the original field [Month Wise Date] and put the above measure onto &lt;STRONG&gt;Values&lt;/STRONG&gt; option&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jun 2024 09:11:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Multiple-Measures-in-matrix-on-same-level/m-p/3985547#M53306</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-06-11T09:11:31Z</dc:date>
    </item>
  </channel>
</rss>

