<?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 in crosstab in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-Hide-values-in-crosstab/m-p/3062818#M105928</link>
    <description>&lt;P&gt;Hi&amp;nbsp; Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here are the steps you can follow：&lt;/P&gt;
&lt;P&gt;1. Create measure.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Year =
IF(
ISINSCOPE('Table'[Date].[Year]) &amp;amp;&amp;amp; NOT(ISINSCOPE('Table'[Date].[Quarter])),[Year Turnover rate],BLANK())&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Qu =
IF(
ISINSCOPE('Table'[Date].[Quarter]) &amp;amp;&amp;amp; NOT(ISINSCOPE('Table'[Date].[Month])),[Quarter turnover rate],BLANK())&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Month =
IF(
    ISINSCOPE('Table'[Date].[Month]),[Month turnover rate],
    BLANK())&lt;/LI-CODE&gt;
&lt;P&gt;2. Result:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Liu Yang&lt;/P&gt;
&lt;P&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;EM&gt;Accept it as the solution&lt;/EM&gt; to help the other members find it more quickly&lt;/P&gt;</description>
    <pubDate>Mon, 06 Feb 2023 02:53:18 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-02-06T02:53:18Z</dc:date>
    <item>
      <title>How to Hide values in crosstab</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-Hide-values-in-crosstab/m-p/3060612#M105740</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need a situation to hide the few values in a crosstab, I have 3 measure values in the crosstab, Year Turnover rate, Quarter turnover rate, Month turnover rate, and Year, Quarter and Month Categories&lt;/P&gt;&lt;P&gt;In the Year Turnover Rate, It Should show only Year-related information, but in my case, it is showing Quarter and monthly information too. How to hide Quarter and month-related information in the Year Turnoverrate measure&amp;nbsp;&lt;/P&gt;&lt;P&gt;And same applies to Quarter Turnover Rate. Can anyone help me please&lt;/P&gt;&lt;P&gt;For reference:-&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kiran&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Feb 2023 15:31:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-Hide-values-in-crosstab/m-p/3060612#M105740</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-02-03T15:31:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide values in crosstab</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-Hide-values-in-crosstab/m-p/3061300#M105786</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; ,&lt;/P&gt;
&lt;P&gt;Use isinscope and merge the three&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Switch(true(),&lt;/P&gt;
&lt;P&gt;isinscope(Date[Month]), [Turn Over Rate %],&lt;/P&gt;
&lt;P&gt;isinscope(Date[Quarter]), [Quarter Turn Over Rate %],&lt;/P&gt;
&lt;P&gt;[Year Turn Over Rate %]&lt;/P&gt;
&lt;P&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.kasperonbi.com/use-isinscope-to-get-the-right-hierarchy-level-in-dax/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://www.kasperonbi.com/use-isinscope-to-get-the-right-hierarchy-level-in-dax/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Feb 2023 02:44:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-Hide-values-in-crosstab/m-p/3061300#M105786</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2023-02-04T02:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide values in crosstab</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-Hide-values-in-crosstab/m-p/3062818#M105928</link>
      <description>&lt;P&gt;Hi&amp;nbsp; Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here are the steps you can follow：&lt;/P&gt;
&lt;P&gt;1. Create measure.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Year =
IF(
ISINSCOPE('Table'[Date].[Year]) &amp;amp;&amp;amp; NOT(ISINSCOPE('Table'[Date].[Quarter])),[Year Turnover rate],BLANK())&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Qu =
IF(
ISINSCOPE('Table'[Date].[Quarter]) &amp;amp;&amp;amp; NOT(ISINSCOPE('Table'[Date].[Month])),[Quarter turnover rate],BLANK())&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Month =
IF(
    ISINSCOPE('Table'[Date].[Month]),[Month turnover rate],
    BLANK())&lt;/LI-CODE&gt;
&lt;P&gt;2. Result:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Liu Yang&lt;/P&gt;
&lt;P&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;EM&gt;Accept it as the solution&lt;/EM&gt; to help the other members find it more quickly&lt;/P&gt;</description>
      <pubDate>Mon, 06 Feb 2023 02:53:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-Hide-values-in-crosstab/m-p/3062818#M105928</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-02-06T02:53:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide values in crosstab</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-Hide-values-in-crosstab/m-p/3063634#M105982</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="148838" data-lia-user-login="amitchandak" class="lia-mention lia-mention-user"&gt;amitchandak&lt;/a&gt;&amp;nbsp;Thanks for the quick reply, It worked fine for me.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Feb 2023 11:22:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-Hide-values-in-crosstab/m-p/3063634#M105982</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-02-06T11:22:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide values in crosstab</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-Hide-values-in-crosstab/m-p/3063787#M106004</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;Thanks for the reply, It worked for me.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Feb 2023 12:44:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-Hide-values-in-crosstab/m-p/3063787#M106004</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-02-06T12:44:05Z</dc:date>
    </item>
  </channel>
</rss>

