<?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 Ignore measure when slicer is selected in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ignore-measure-when-slicer-is-selected/m-p/3756018#M146532</link>
    <description>&lt;P&gt;Hi Community,&amp;nbsp;&lt;SPAN&gt;I would like my measure in table to ignore when slicer is selected.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Below is my measure which is calculating previous month income based on week ranks and is showing blank when slicer is selected&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;&lt;EM&gt;&lt;FONT size="3"&gt;Last period Income&lt;/FONT&gt; =&lt;/EM&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;&lt;EM&gt;VAR CW= MIN('Calendar'[WeekRank])&lt;/EM&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;&lt;EM&gt;VAR&amp;nbsp;Cal1&amp;nbsp;= CALCULATE([SalesIncome],'Calendar'[WeekRank]=CW+148,&lt;BR /&gt;REMOVEFILTERS('Calendar'[Financial Week]))&lt;/EM&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;&lt;EM&gt;RETURN Cal1&lt;/EM&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;My slicer is using calendar financial week column&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;P&gt;&lt;SPAN&gt;Thank you in advance for any suggestions/advices.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;RV&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Mon, 11 Mar 2024 18:00:57 GMT</pubDate>
    <dc:creator>RJ_KON</dc:creator>
    <dc:date>2024-03-11T18:00:57Z</dc:date>
    <item>
      <title>Ignore measure when slicer is selected</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ignore-measure-when-slicer-is-selected/m-p/3756018#M146532</link>
      <description>&lt;P&gt;Hi Community,&amp;nbsp;&lt;SPAN&gt;I would like my measure in table to ignore when slicer is selected.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Below is my measure which is calculating previous month income based on week ranks and is showing blank when slicer is selected&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;&lt;EM&gt;&lt;FONT size="3"&gt;Last period Income&lt;/FONT&gt; =&lt;/EM&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;&lt;EM&gt;VAR CW= MIN('Calendar'[WeekRank])&lt;/EM&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;&lt;EM&gt;VAR&amp;nbsp;Cal1&amp;nbsp;= CALCULATE([SalesIncome],'Calendar'[WeekRank]=CW+148,&lt;BR /&gt;REMOVEFILTERS('Calendar'[Financial Week]))&lt;/EM&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;&lt;EM&gt;RETURN Cal1&lt;/EM&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;My slicer is using calendar financial week column&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;P&gt;&lt;SPAN&gt;Thank you in advance for any suggestions/advices.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;RV&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 11 Mar 2024 18:00:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ignore-measure-when-slicer-is-selected/m-p/3756018#M146532</guid>
      <dc:creator>RJ_KON</dc:creator>
      <dc:date>2024-03-11T18:00:57Z</dc:date>
    </item>
    <item>
      <title>Re: Ignore measure when slicer is selected</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ignore-measure-when-slicer-is-selected/m-p/3756051#M146534</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="146750" data-lia-user-login="RJ_KON" class="lia-mention lia-mention-user"&gt;RJ_KON&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In your formula, you need to apply the filter for CW variable as well:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;VAR CW = CALCULATE(MIN('Calendar'[WeekRank]),REMOVEFILTERS('Calendar'[Financial Week]))&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 11 Mar 2024 18:18:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ignore-measure-when-slicer-is-selected/m-p/3756051#M146534</guid>
      <dc:creator>govindarajan_d</dc:creator>
      <dc:date>2024-03-11T18:18:01Z</dc:date>
    </item>
    <item>
      <title>Re: Ignore measure when slicer is selected</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ignore-measure-when-slicer-is-selected/m-p/3756150#M146543</link>
      <description>&lt;P&gt;Hi Govindarajan, it worked.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;RV&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2024 19:20:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ignore-measure-when-slicer-is-selected/m-p/3756150#M146543</guid>
      <dc:creator>RJ_KON</dc:creator>
      <dc:date>2024-03-11T19:20:41Z</dc:date>
    </item>
  </channel>
</rss>

