<?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: The New Hotness (Custom Matrix Hierarchy) in Quick Measures Gallery</title>
    <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/2942408#M930</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="343068" data-lia-user-login="Aurelio" class="lia-mention lia-mention-user"&gt;Aurelio&lt;/a&gt;&amp;nbsp;I don't see why not.&lt;/P&gt;</description>
    <pubDate>Thu, 01 Dec 2022 16:25:29 GMT</pubDate>
    <dc:creator>Greg_Deckler</dc:creator>
    <dc:date>2022-12-01T16:25:29Z</dc:date>
    <item>
      <title>The New Hotness (Custom Matrix Hierarchy)</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/963588#M428</link>
      <description>&lt;P&gt;OK, this one is a bit complex and is in many ways a different spin on the Disconnected Table Trick.&lt;/P&gt;
&lt;P&gt;So, this recipe is designed to fix the issue where you have a matrix with a column or two in it and you just want to add a value onto the the end of the matrix but then the matrix decides to spew out the value for every column in the matrix and you end up trying to shrink the offending columns down so that you don't really see them, but it is tedious and ugly and generally ends up looking pretty terrible and so you are like "&lt;EM&gt;Ah man, this sucks, my report was looking great but now I have this jankey matrix visual that looks terrible&lt;/EM&gt;" and you think to yourself "&lt;EM&gt;If only there was a way to tack columns on to the end of the matrix sort of like Totals&lt;/EM&gt;" so then you go look in the Subtotals and Grand Totals areas of the formatting pane but you don't find anything and you realize that is probably because these extra columns wouldn't really be totals per se but since they are columns you think "&lt;EM&gt;Yeah, maybe in the Column headers area&lt;/EM&gt;" but you don't find anything there either but you do notice the Grid area right above it so you check that out because, you know, what the heck, but there's nothing really helpful there so in desparation you check the Values area and still no joy and you think "&lt;EM&gt;Hey maybe if I click on the little drop down arrow on the column in the Values area maybe there is an option like show only once&lt;/EM&gt;" so you check that and spend a couple hours playing around with Conditional formatting, which you had never really noticed before but then you get back to the problem at hand and you are left frustrated, depressed and all downtroddin and stuff thinking, &lt;EM&gt;"Yo dawg, if I could just have some option somewhere where I could just tack a few extra columns on to the end of the matrix just like I can keep tacking words on to the end of a sentence..."&lt;/EM&gt;&amp;nbsp;Bummer.&lt;/P&gt;
&lt;P&gt;So if you have ever found yourself in that situation. I mean, not that EXACT situation because that is perhaps oddly specific. But, you know, generally that situation. You can do this, create your own custom hierarchy like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Custom Hierarchy = 
    { 
        ("2019", "January", 1),
        ("2019", "February", 2),
        ("2019", "March", 3),
        ("2019", "April", 4),
        ("2019", "May", 5),
        ("2019", "June", 6),
        ("2019", "July", 7),
        ("2019", "August", 8),
        ("2019", "September", 9),
        ("2019", "October", 10),
        ("2019", "November", 11),
        ("2019", "December", 12),
        ("2020", "January", 1),
        ("2020", "February", 2),
        ("2020", "March", 3),
        ("2020", "April", 4),
        ("2020", "May", 5),
        ("2020", "June", 6),
        ("2020", "July", 7),
        ("2020", "August", 8),
        ("2020", "September", 9),
        ("2020", "October", 10),
        ("2020", "November", 11),
        ("2020", "December", 12),
        ("Other", "LY", 13),
        ("Other", "PY", 14)
    }&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And then create a corresponding measure like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 
    VAR __Value1 = MAX('Custom Hierarchy'[Value1])
    VAR __Value2 = MAX('Custom Hierarchy'[Value2])
RETURN
    SWITCH(
        TRUE(),
        ISINSCOPE('Custom Hierarchy'[Value2]) &amp;amp;&amp;amp; __Value2 = "January",
            VAR __Year = VALUE(MAX('Custom Hierarchy'[Value1]))
            VAR __Month = 1
            RETURN
                SUMX(FILTER('Table',YEAR('Table'[Invoice Date]) = __Year &amp;amp;&amp;amp; MONTH('Table'[Invoice Date]) = __Month),[Price]),
        ISINSCOPE('Custom Hierarchy'[Value2]) &amp;amp;&amp;amp; __Value2 = "February",
            VAR __Year = VALUE(MAX('Custom Hierarchy'[Value1]))
            VAR __Month = 2
            RETURN
                SUMX(FILTER('Table',YEAR('Table'[Invoice Date]) = __Year &amp;amp;&amp;amp; MONTH('Table'[Invoice Date]) = __Month),[Price]),
        ISINSCOPE('Custom Hierarchy'[Value2]) &amp;amp;&amp;amp; __Value2 = "March",
            VAR __Year = VALUE(MAX('Custom Hierarchy'[Value1]))
            VAR __Month = 3
            RETURN
                SUMX(FILTER('Table',YEAR('Table'[Invoice Date]) = __Year &amp;amp;&amp;amp; MONTH('Table'[Invoice Date]) = __Month),[Price]),
        ISINSCOPE('Custom Hierarchy'[Value2]) &amp;amp;&amp;amp; __Value2 = "April",
            VAR __Year = VALUE(MAX('Custom Hierarchy'[Value1]))
            VAR __Month = 4
            RETURN
                SUMX(FILTER('Table',YEAR('Table'[Invoice Date]) = __Year &amp;amp;&amp;amp; MONTH('Table'[Invoice Date]) = __Month),[Price]),
       ISINSCOPE('Custom Hierarchy'[Value2]) &amp;amp;&amp;amp; __Value2 = "May",
            VAR __Year = VALUE(MAX('Custom Hierarchy'[Value1]))
            VAR __Month = 5
            RETURN
                SUMX(FILTER('Table',YEAR('Table'[Invoice Date]) = __Year &amp;amp;&amp;amp; MONTH('Table'[Invoice Date]) = __Month),[Price]),
        ISINSCOPE('Custom Hierarchy'[Value2]) &amp;amp;&amp;amp; __Value2 = "June",
            VAR __Year = VALUE(MAX('Custom Hierarchy'[Value1]))
            VAR __Month = 6
            RETURN
                SUMX(FILTER('Table',YEAR('Table'[Invoice Date]) = __Year &amp;amp;&amp;amp; MONTH('Table'[Invoice Date]) = __Month),[Price]),
        ISINSCOPE('Custom Hierarchy'[Value2]) &amp;amp;&amp;amp; __Value2 = "July",
            VAR __Year = VALUE(MAX('Custom Hierarchy'[Value1]))
            VAR __Month = 7
            RETURN
                SUMX(FILTER('Table',YEAR('Table'[Invoice Date]) = __Year &amp;amp;&amp;amp; MONTH('Table'[Invoice Date]) = __Month),[Price]),
        ISINSCOPE('Custom Hierarchy'[Value2]) &amp;amp;&amp;amp; __Value2 = "August",
            VAR __Year = VALUE(MAX('Custom Hierarchy'[Value1]))
            VAR __Month = 8
            RETURN
                SUMX(FILTER('Table',YEAR('Table'[Invoice Date]) = __Year &amp;amp;&amp;amp; MONTH('Table'[Invoice Date]) = __Month),[Price]),
        ISINSCOPE('Custom Hierarchy'[Value2]) &amp;amp;&amp;amp; __Value2 = "September",
            VAR __Year = VALUE(MAX('Custom Hierarchy'[Value1]))
            VAR __Month = 9
            RETURN
                SUMX(FILTER('Table',YEAR('Table'[Invoice Date]) = __Year &amp;amp;&amp;amp; MONTH('Table'[Invoice Date]) = __Month),[Price]),
       ISINSCOPE('Custom Hierarchy'[Value2]) &amp;amp;&amp;amp; __Value2 = "October",
            VAR __Year = VALUE(MAX('Custom Hierarchy'[Value1]))
            VAR __Month = 10
            RETURN
                SUMX(FILTER('Table',YEAR('Table'[Invoice Date]) = __Year &amp;amp;&amp;amp; MONTH('Table'[Invoice Date]) = __Month),[Price]),
        ISINSCOPE('Custom Hierarchy'[Value2]) &amp;amp;&amp;amp; __Value2 = "November",
            VAR __Year = VALUE(MAX('Custom Hierarchy'[Value1]))
            VAR __Month = 11
            RETURN
                SUMX(FILTER('Table',YEAR('Table'[Invoice Date]) = __Year &amp;amp;&amp;amp; MONTH('Table'[Invoice Date]) = __Month),[Price]),
        ISINSCOPE('Custom Hierarchy'[Value2]) &amp;amp;&amp;amp; __Value2 = "December",
            VAR __Year = VALUE(MAX('Custom Hierarchy'[Value1]))
            VAR __Month = 12
            RETURN
                SUMX(FILTER('Table',YEAR('Table'[Invoice Date]) = __Year &amp;amp;&amp;amp; MONTH('Table'[Invoice Date]) = __Month),[Price]), 
        ISINSCOPE('Custom Hierarchy'[Value2]) &amp;amp;&amp;amp; __Value2 = "LY",1000,
        ISINSCOPE('Custom Hierarchy'[Value2]) &amp;amp;&amp;amp; __Value2 = "PY",100,
        ISINSCOPE('Custom Hierarchy'[Value2]), BLANK(),
        ISINSCOPE('Custom Hierarchy'[Value1]) &amp;amp;&amp;amp; __Value1 &amp;lt;&amp;gt; "Other",
            VAR __Year = VALUE(MAX('Custom Hierarchy'[Value1]))
            RETURN
                SUMX(FILTER('Table',YEAR('Table'[Invoice Date]) = __Year),[Price]),
        ISINSCOPE('Custom Hierarchy'[Value1]) &amp;amp;&amp;amp; __Value1 &amp;lt;&amp;gt; "Other",
            BLANK(),
        BLANK()
    )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="reportid hidden"&gt;eyJrIjoiMDllYzdkMjEtNjdlOS00OWQ1LWE0N2YtMmEwMGRiN2JjOTg4IiwidCI6IjRhMDQyNzQzLTM3M2EtNDNkMi04MjdiLTAwM2Y0YzdiYTFlNSIsImMiOjN9&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Mar 2020 21:40:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/963588#M428</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2020-03-22T21:40:44Z</dc:date>
    </item>
    <item>
      <title>Re: The New Hotness (Custom Matrix Hierarchy)</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/1334366#M602</link>
      <description>&lt;P&gt;Another piece from your colleciton of ingenious works!&lt;/P&gt;
&lt;P&gt;Please produce Customer Hierarchy table in PQ, if you don't mind.&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;let
    Source = Table.FromRecords(
        List.Generate(
            () =&amp;gt; {Date.StartOfYear(Date.AddYears(DateTime.LocalNow(), -1))},
            each Date.Year(_{0}) &amp;lt;= Date.Year(Date.AddYears(DateTime.LocalNow(), 0)),
            each {Date.AddMonths(_{0}, 1)},
            each [Year = Date.Year(_{0}), Month = Date.Month(_{0}), MonthName = Date.MonthName(_{0})]
        )
    )
    &amp;amp;
    #table({"Year", "Month", "MonthName"}, {{"Other", "LY", 13}, {"Other", "PY", 14}})
in
    Source&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 30 Aug 2020 20:14:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/1334366#M602</guid>
      <dc:creator>CNENFRNL</dc:creator>
      <dc:date>2020-08-30T20:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: The New Hotness (Custom Matrix Hierarchy)</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/1334375#M603</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="250150" data-lia-user-login="CNENFRNL" class="lia-mention lia-mention-user"&gt;CNENFRNL&lt;/a&gt;&amp;nbsp;- Oh yeah, I like that! Very nice! I wish my Power Query fu was stronger sometimes! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 30 Aug 2020 20:45:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/1334375#M603</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2020-08-30T20:45:43Z</dc:date>
    </item>
    <item>
      <title>Re: The New Hotness (Custom Matrix Hierarchy)</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/1646888#M663</link>
      <description>&lt;P&gt;I love this solution. Do you know if it is possible to conditionally format specific columns e.g. Ly, PY?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Feb 2021 03:12:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/1646888#M663</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-02-05T03:12:42Z</dc:date>
    </item>
    <item>
      <title>Re: The New Hotness (Custom Matrix Hierarchy)</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/2079813#M768</link>
      <description>&lt;P&gt;Thanks Greg for this solution, it is helping me immensely. I have customized it to fit my needs but struggle with column subtotals. It seems that the matrix cannot compute them for the &lt;EM&gt;additional values&amp;nbsp;&lt;/EM&gt;- LY and PY in your example, and gives blank values. For row subtotals instead it works perfectly. Any idea on what may cause this behavior?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Sep 2021 09:24:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/2079813#M768</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-16T09:24:10Z</dc:date>
    </item>
    <item>
      <title>Re: The New Hotness (Custom Matrix Hierarchy)</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/2079841#M769</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;If I understand the question correctly, once you go this route I believe you would need to add the Total columns to your hierarchy essentially and compute them yourself. If you had sample data and expected output I might be able to be more specific.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Sep 2021 09:36:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/2079841#M769</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2021-09-16T09:36:44Z</dc:date>
    </item>
    <item>
      <title>Re: The New Hotness (Custom Matrix Hierarchy)</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/2080177#M770</link>
      <description>&lt;P&gt;&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;unfortunately i cannot provide sample data. Using your example, just imagine that LY and PY are measures that can be filtered by the rows. I would then like to have a column total which sums the monthly data with LY and PY.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Just to make sure I understand your suggestion, you are saying to create a further column in the measure which sums up the data, insted of relying on the built in column subtotal of matrix visual, is that correct? Thanks for your help&lt;/P&gt;</description>
      <pubDate>Thu, 16 Sep 2021 11:24:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/2080177#M770</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-16T11:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: The New Hotness (Custom Matrix Hierarchy)</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/2080213#M771</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;Correct, that's what I'm thinking.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Sep 2021 11:39:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/2080213#M771</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2021-09-16T11:39:12Z</dc:date>
    </item>
    <item>
      <title>Re: The New Hotness (Custom Matrix Hierarchy)</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/2621238#M860</link>
      <description>&lt;P&gt;Hi ceyres,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did you find the way how to add conditional format using this way?&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2022 03:54:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/2621238#M860</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-07-06T03:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: The New Hotness (Custom Matrix Hierarchy)</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/2942130#M929</link>
      <description>&lt;P&gt;&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;Interesting look at a very annoying problem. The solution works fine but is there a way to insert additional colums after every year?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Dec 2022 14:32:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/2942130#M929</guid>
      <dc:creator>Aurelio</dc:creator>
      <dc:date>2022-12-01T14:32:23Z</dc:date>
    </item>
    <item>
      <title>Re: The New Hotness (Custom Matrix Hierarchy)</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/2942408#M930</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="343068" data-lia-user-login="Aurelio" class="lia-mention lia-mention-user"&gt;Aurelio&lt;/a&gt;&amp;nbsp;I don't see why not.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Dec 2022 16:25:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/2942408#M930</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2022-12-01T16:25:29Z</dc:date>
    </item>
    <item>
      <title>Re: The New Hotness (Custom Matrix Hierarchy)</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/3415869#M1000</link>
      <description>&lt;P&gt;Hey&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;BR /&gt;&lt;BR /&gt;I have a question, is this something also related to the measures we have in values bucket but we wanted to add individual measure not getting affected by the column bucket layer ?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2023 14:33:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/3415869#M1000</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-09-05T14:33:15Z</dc:date>
    </item>
    <item>
      <title>Re: The New Hotness (Custom Matrix Hierarchy)</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/3767169#M1067</link>
      <description>&lt;P&gt;Can you post the PBIX ?&lt;/P&gt;&lt;P&gt;I'm a little confused on how to relate this to a date table and which value 1 and value 2 are refering too.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2024 16:19:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/3767169#M1067</guid>
      <dc:creator>autoNation</dc:creator>
      <dc:date>2024-03-15T16:19:30Z</dc:date>
    </item>
    <item>
      <title>Re: The New Hotness (Custom Matrix Hierarchy)</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/3767366#M1068</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="645950" data-lia-user-login="autoNation" class="lia-mention lia-mention-user"&gt;autoNation&lt;/a&gt;&amp;nbsp;The PBIX is attached. It is named Impossible.pbix and is just above the Reply button but over on the left.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2024 18:10:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/3767366#M1068</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2024-03-15T18:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: The New Hotness (Custom Matrix Hierarchy)</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/4211708#M1142</link>
      <description>&lt;P&gt;Thank you this was very helpful.&lt;BR /&gt;&lt;BR /&gt;Unfortunately I am having trouble getting my columns in correct order.&lt;BR /&gt;I have added the value3 column, same as you, to give the correct order but I am not sure how to apply it.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;BR /&gt;&lt;img /&gt;&lt;BR /&gt;&lt;img /&gt;&lt;BR /&gt;Any help would be most appreciated&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Oct 2024 09:38:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/4211708#M1142</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-10-02T09:38:44Z</dc:date>
    </item>
    <item>
      <title>Re: The New Hotness (Custom Matrix Hierarchy)</title>
      <link>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/4212403#M1144</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;You need to use the Sort By column functionality. So set the Sort By column for your second column to be your third column&lt;/P&gt;</description>
      <pubDate>Wed, 02 Oct 2024 14:45:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/4212403#M1144</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2024-10-02T14:45:57Z</dc:date>
    </item>
  </channel>
</rss>

