<?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 Remove empty hirearchy levels in Custom Visuals Development Discussion</title>
    <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Remove-empty-hirearchy-levels/m-p/1091582#M3171</link>
    <description>&lt;P&gt;HI! Im trying to build a custom Matrix from a table, so that the empty hierarchy levels do not display.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Category 1&lt;/TD&gt;&lt;TD&gt;Category 2&lt;/TD&gt;&lt;TD&gt;Category 3&lt;/TD&gt;&lt;TD&gt;Value&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;BMW&lt;/TD&gt;&lt;TD&gt;Black&lt;/TD&gt;&lt;TD&gt;New&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;BMW&lt;/TD&gt;&lt;TD&gt;White&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Audi&lt;/TD&gt;&lt;TD&gt;Red&lt;/TD&gt;&lt;TD&gt;Used&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What Im betting now for the second row is&amp;nbsp;&lt;/P&gt;&lt;P&gt;- BMW-White-&lt;STRONG&gt;BLANK&lt;/STRONG&gt;-2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How could I remove the blanks in between from the hierarchies?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the help!&lt;/P&gt;</description>
    <pubDate>Fri, 15 May 2020 13:03:32 GMT</pubDate>
    <dc:creator>JP_Helsinki</dc:creator>
    <dc:date>2020-05-15T13:03:32Z</dc:date>
    <item>
      <title>Remove empty hirearchy levels</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Remove-empty-hirearchy-levels/m-p/1091582#M3171</link>
      <description>&lt;P&gt;HI! Im trying to build a custom Matrix from a table, so that the empty hierarchy levels do not display.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Category 1&lt;/TD&gt;&lt;TD&gt;Category 2&lt;/TD&gt;&lt;TD&gt;Category 3&lt;/TD&gt;&lt;TD&gt;Value&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;BMW&lt;/TD&gt;&lt;TD&gt;Black&lt;/TD&gt;&lt;TD&gt;New&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;BMW&lt;/TD&gt;&lt;TD&gt;White&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Audi&lt;/TD&gt;&lt;TD&gt;Red&lt;/TD&gt;&lt;TD&gt;Used&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What Im betting now for the second row is&amp;nbsp;&lt;/P&gt;&lt;P&gt;- BMW-White-&lt;STRONG&gt;BLANK&lt;/STRONG&gt;-2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How could I remove the blanks in between from the hierarchies?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the help!&lt;/P&gt;</description>
      <pubDate>Fri, 15 May 2020 13:03:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Remove-empty-hirearchy-levels/m-p/1091582#M3171</guid>
      <dc:creator>JP_Helsinki</dc:creator>
      <dc:date>2020-05-15T13:03:32Z</dc:date>
    </item>
    <item>
      <title>Re: Remove empty hirearchy levels</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Remove-empty-hirearchy-levels/m-p/1092345#M3172</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/231155"&gt;@JP_Helsinki&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;The design pattern you're looking for is a ragged hierarchy, and Power BI doesn't support it natively. It can be managed with a number of additional modelaling changes and some measures to check which level of the hierarchy a value is on.&lt;/P&gt;
&lt;P&gt;The following articles are my go-tos whenever I need to implement such a pattern, and should help you out:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://www.daxpatterns.com/parent-child-hierarchies/" target="_self"&gt;SQLBI: Parent-Child Hierarchies&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://www.kasperonbi.com/use-isinscope-to-get-the-right-hierarchy-level-in-dax/" target="_self"&gt;Kasper on BI: Use IsInScope to get the right hierarchy level in DAX&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://radacad.com/removing-blanks-from-organizational-ragged-hierarchy-in-power-bi-matrix-visual" target="_self"&gt;RADACAD: Removing Blanks from Organizational Ragged Hierarchy in Power BI Matrix Visual&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Good luck &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Daniel&lt;/P&gt;</description>
      <pubDate>Fri, 15 May 2020 23:06:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Remove-empty-hirearchy-levels/m-p/1092345#M3172</guid>
      <dc:creator>dm-p</dc:creator>
      <dc:date>2020-05-15T23:06:19Z</dc:date>
    </item>
  </channel>
</rss>

