<?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: How to hide values when expanding subcategories in Matrix in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-hide-values-when-expanding-subcategories-in-Matrix/m-p/2377376#M61323</link>
    <description>&lt;P&gt;Thanks! this worked!&lt;/P&gt;</description>
    <pubDate>Mon, 07 Mar 2022 00:19:08 GMT</pubDate>
    <dc:creator>MBisceglia</dc:creator>
    <dc:date>2022-03-07T00:19:08Z</dc:date>
    <item>
      <title>How to hide values when expanding subcategories in Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-hide-values-when-expanding-subcategories-in-Matrix/m-p/2375876#M61186</link>
      <description>&lt;P&gt;Hi everyone,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible to hide values of a column as we expand a matrix? Here's what my matrix looks like, I trying to hide the 100%:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;This is obviusly because if the measure I created ("Vacancy Rate") is only accounting the rows in which status="Vacant". Here's my measure:&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Vacancy Rate = &lt;/SPAN&gt;&lt;SPAN&gt;DIVIDE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;COUNTROWS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Table&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;Table[Status]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"Vacant"&lt;/SPAN&gt;&lt;SPAN&gt;)),&lt;/SPAN&gt;&lt;SPAN&gt;COUNTROWS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Table&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Maybe the solution is to modify the DAX for the measure.&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Thanks in advance,&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Michelle&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Mar 2022 22:20:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-hide-values-when-expanding-subcategories-in-Matrix/m-p/2375876#M61186</guid>
      <dc:creator>MBisceglia</dc:creator>
      <dc:date>2022-03-04T22:20:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to hide values when expanding subcategories in Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-hide-values-when-expanding-subcategories-in-Matrix/m-p/2375961#M61195</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;Can you try&lt;/P&gt;&lt;P&gt;Vacancy Rate&amp;nbsp;&lt;BR /&gt;var&amp;nbsp; VR =&lt;SPAN&gt;DIVIDE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;COUNTROWS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Table&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;Table[Status]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"Vacant"&lt;/SPAN&gt;&lt;SPAN&gt;)),&lt;/SPAN&gt;&lt;SPAN&gt;COUNTROWS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Table&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;BR /&gt;return&lt;BR /&gt;CALCULATE(VR, Table[Department] &amp;lt;&amp;gt; "vacant")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 05 Mar 2022 00:42:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-hide-values-when-expanding-subcategories-in-Matrix/m-p/2375961#M61195</guid>
      <dc:creator>Whitewater100</dc:creator>
      <dc:date>2022-03-05T00:42:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to hide values when expanding subcategories in Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-hide-values-when-expanding-subcategories-in-Matrix/m-p/2375970#M61196</link>
      <description>&lt;LI-CODE lang="markup"&gt;var __vacancy =
DIVIDE(
    COUNTROWS( FILTER( Table, Table[Status] = "Vacant" ) ),
    COUNTROWS( Table ),0
)
return if(__vacancy&amp;lt;1,__vacancy)&lt;/LI-CODE&gt;</description>
      <pubDate>Sat, 05 Mar 2022 00:58:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-hide-values-when-expanding-subcategories-in-Matrix/m-p/2375970#M61196</guid>
      <dc:creator>CNENFRNL</dc:creator>
      <dc:date>2022-03-05T00:58:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to hide values when expanding subcategories in Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-hide-values-when-expanding-subcategories-in-Matrix/m-p/2377376#M61323</link>
      <description>&lt;P&gt;Thanks! this worked!&lt;/P&gt;</description>
      <pubDate>Mon, 07 Mar 2022 00:19:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-hide-values-when-expanding-subcategories-in-Matrix/m-p/2377376#M61323</guid>
      <dc:creator>MBisceglia</dc:creator>
      <dc:date>2022-03-07T00:19:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to hide values when expanding subcategories in Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-hide-values-when-expanding-subcategories-in-Matrix/m-p/2377377#M61324</link>
      <description>&lt;P&gt;Hmm this didn't work, but thanks anyways!&lt;/P&gt;</description>
      <pubDate>Mon, 07 Mar 2022 00:20:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-hide-values-when-expanding-subcategories-in-Matrix/m-p/2377377#M61324</guid>
      <dc:creator>MBisceglia</dc:creator>
      <dc:date>2022-03-07T00:20:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to hide values when expanding subcategories in Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-hide-values-when-expanding-subcategories-in-Matrix/m-p/3859817#M150764</link>
      <description>&lt;P&gt;How would that formula look like if the row label was not always showing "vacant" but was another field instead in a secondary expandable row (so not a value of department)?&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2024 15:37:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-hide-values-when-expanding-subcategories-in-Matrix/m-p/3859817#M150764</guid>
      <dc:creator>GiaPa</dc:creator>
      <dc:date>2024-04-22T15:37:02Z</dc:date>
    </item>
  </channel>
</rss>

