<?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: need measure not syncronised with calendar slicer in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-measure-not-syncronised-with-calendar-slicer/m-p/3849184#M150403</link>
    <description>&lt;P&gt;use edit interaction feature to achieve this. and turn of interaction of the visual with other visual&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;My blog:&lt;/STRONG&gt;&lt;BR /&gt;&lt;A href="https://analyticpulse.blogspot.com/" target="_blank"&gt;https://analyticpulse.blogspot.com/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://analyticpulse.blogspot.com/2024/04/case-study-powerbi-dashboard-developer.html" target="_blank"&gt;https://analyticpulse.blogspot.com/2024/04/case-study-powerbi-dashboard-developer.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;See my Pins :&lt;/STRONG&gt;&lt;BR /&gt;&lt;A href="https://pin.it/5aoqgZUft" target="_blank"&gt;https://pin.it/5aoqgZUft&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://in.pinterest.com/AnalyticPulse/" target="_blank"&gt;https://in.pinterest.com/AnalyticPulse/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 18 Apr 2024 10:02:06 GMT</pubDate>
    <dc:creator>AnalyticPulse</dc:creator>
    <dc:date>2024-04-18T10:02:06Z</dc:date>
    <item>
      <title>need measure not syncronised with calendar slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-measure-not-syncronised-with-calendar-slicer/m-p/3849115#M150399</link>
      <description>&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created a report where we have number of tickets and number of requests created from these tickets. More requests can be created from a tciket and on different days. I created the measure, used &lt;EM&gt;instersect&lt;/EM&gt;&amp;nbsp;dax to connect requests came from the tickets and now have calendar slicer where I can filter tickets created ex on 1st of april but the requests measure should ignor calendar slicer, as request can be created on later days.&lt;/P&gt;&lt;P&gt;edit: here is my measure:&lt;/P&gt;&lt;P&gt;digital requests for tickets =&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;VAR _ticketswithdigitalrequests&lt;BR /&gt;CALCULATETABLE (&lt;BR /&gt;VALUES (f_request[ticket]&lt;BR /&gt;FILTER (f_request, f_request[nb_created_digital] &amp;lt;&amp;gt; 0),&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;VAR _digitalticket&lt;BR /&gt;CALCULATETABLE (&lt;BR /&gt;VALUES (f_ticket [ticket_id]),&lt;BR /&gt;FILTER ( f_ticket, f_ticket [is_eligible]= TRUE ( ) ),&lt;BR /&gt;FILTER (d_channel, d_channel [digital] = TEUE ( ) ),&lt;/P&gt;&lt;P&gt;RETURN&lt;BR /&gt;COUNTROWS ( INTERSECT ( _digitalticket, _ticketswithdigitalrequests ) ) + 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- in the table I have number of tickets and number of request measures, only number of requests measure should ignore the calendar slicer&lt;/P&gt;&lt;P&gt;how it can be done?&lt;/P&gt;&lt;P&gt;thanks in advance and have a nice day ahead.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2024 10:50:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-measure-not-syncronised-with-calendar-slicer/m-p/3849115#M150399</guid>
      <dc:creator>bmz545</dc:creator>
      <dc:date>2024-04-18T10:50:55Z</dc:date>
    </item>
    <item>
      <title>Re: need measure not syncronised with calendar slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-measure-not-syncronised-with-calendar-slicer/m-p/3849184#M150403</link>
      <description>&lt;P&gt;use edit interaction feature to achieve this. and turn of interaction of the visual with other visual&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;My blog:&lt;/STRONG&gt;&lt;BR /&gt;&lt;A href="https://analyticpulse.blogspot.com/" target="_blank"&gt;https://analyticpulse.blogspot.com/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://analyticpulse.blogspot.com/2024/04/case-study-powerbi-dashboard-developer.html" target="_blank"&gt;https://analyticpulse.blogspot.com/2024/04/case-study-powerbi-dashboard-developer.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;See my Pins :&lt;/STRONG&gt;&lt;BR /&gt;&lt;A href="https://pin.it/5aoqgZUft" target="_blank"&gt;https://pin.it/5aoqgZUft&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://in.pinterest.com/AnalyticPulse/" target="_blank"&gt;https://in.pinterest.com/AnalyticPulse/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2024 10:02:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-measure-not-syncronised-with-calendar-slicer/m-p/3849184#M150403</guid>
      <dc:creator>AnalyticPulse</dc:creator>
      <dc:date>2024-04-18T10:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: need measure not syncronised with calendar slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-measure-not-syncronised-with-calendar-slicer/m-p/3849414#M150413</link>
      <description>&lt;P&gt;thanks for your reply, I already edited the original message. I have 2 measures in the table and I want only one of them to ignore the calendar slicer.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2024 10:56:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-measure-not-syncronised-with-calendar-slicer/m-p/3849414#M150413</guid>
      <dc:creator>bmz545</dc:creator>
      <dc:date>2024-04-18T10:56:15Z</dc:date>
    </item>
    <item>
      <title>Re: need measure not syncronised with calendar slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-measure-not-syncronised-with-calendar-slicer/m-p/3857968#M150699</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="727309" data-lia-user-login="bmz545" class="lia-mention lia-mention-user"&gt;bmz545&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can try to use the HASONEVALUE function, you can refer to:&lt;A href="https://learn.microsoft.com/en-us/dax/hasonevalue-function-dax" target="_blank"&gt;HASONEVALUE function (DAX) - DAX | Microsoft Learn&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Hope it helps!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Community Support Team_ Scott Chang&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post helps then please consider&amp;nbsp;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2024 06:16:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-measure-not-syncronised-with-calendar-slicer/m-p/3857968#M150699</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-04-22T06:16:00Z</dc:date>
    </item>
    <item>
      <title>Re: need measure not syncronised with calendar slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-measure-not-syncronised-with-calendar-slicer/m-p/3865890#M151014</link>
      <description>&lt;P&gt;&lt;SPAN&gt;VAR _ticketswithdigitalrequests&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;CALCULATETABLE (&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;VALUES (f_request[ticket]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;FILTER (ALL(f_request), f_request[nb_created_digital] &amp;lt;&amp;gt; 0),&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;)&lt;BR /&gt;&lt;BR /&gt;Added ALL after the Filter and it fied the issue&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2024 15:09:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-measure-not-syncronised-with-calendar-slicer/m-p/3865890#M151014</guid>
      <dc:creator>bmz545</dc:creator>
      <dc:date>2024-04-24T15:09:48Z</dc:date>
    </item>
    <item>
      <title>Re: need measure not syncronised with calendar slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-measure-not-syncronised-with-calendar-slicer/m-p/3865900#M151015</link>
      <description>&lt;P&gt;Thanks for your reply. Seems ALL measure was the answer for that task.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2024 15:10:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-measure-not-syncronised-with-calendar-slicer/m-p/3865900#M151015</guid>
      <dc:creator>bmz545</dc:creator>
      <dc:date>2024-04-24T15:10:56Z</dc:date>
    </item>
  </channel>
</rss>

