<?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: DAX measure in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure/m-p/2547378#M71979</link>
    <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , Are you looking for quartiles?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://sqldusty.com/2018/08/31/calculating-quartiles-with-dax-and-power-bi/" target="_blank"&gt;https://sqldusty.com/2018/08/31/calculating-quartiles-with-dax-and-power-bi/&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 30 May 2022 09:33:37 GMT</pubDate>
    <dc:creator>amitchandak</dc:creator>
    <dc:date>2022-05-30T09:33:37Z</dc:date>
    <item>
      <title>DAX measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure/m-p/2546758#M71949</link>
      <description>&lt;P&gt;I have created a table visual and I want to see the classification change as the slicer is being modified.&lt;/P&gt;&lt;P&gt;For example&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Actual Utilisation rate&lt;/TD&gt;&lt;TD&gt;Utilisation classification&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;10&lt;/TD&gt;&lt;TD&gt;&amp;lt;25% budget&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;26&lt;/TD&gt;&lt;TD&gt;&amp;gt;25% budget&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;Quarter 1 is 25%&lt;/P&gt;&lt;P&gt;Quarter 2 is 50%&lt;/P&gt;&lt;P&gt;Quarter 3 is 75%&lt;/P&gt;&lt;P&gt;Quarter 4 is 100%&lt;BR /&gt;&lt;SPAN&gt;If only one quarter is selected, it should show 25%&lt;/SPAN&gt;actual utilisation will be culmulative, and the classification should automatically show 50% if both Q1 &amp;amp; Q2 are selected. Q1, Q2, Q3 are selected ,75% should appear.&amp;nbsp;&lt;BR /&gt;This goes on for the other quarters too.&lt;BR /&gt;Can you please help on how to do that?&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 30 May 2022 06:30:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure/m-p/2546758#M71949</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-05-30T06:30:14Z</dc:date>
    </item>
    <item>
      <title>Re: DAX measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure/m-p/2547378#M71979</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , Are you looking for quartiles?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://sqldusty.com/2018/08/31/calculating-quartiles-with-dax-and-power-bi/" target="_blank"&gt;https://sqldusty.com/2018/08/31/calculating-quartiles-with-dax-and-power-bi/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 May 2022 09:33:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure/m-p/2547378#M71979</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-05-30T09:33:37Z</dc:date>
    </item>
    <item>
      <title>Re: DAX measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure/m-p/2547602#M71988</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;BR /&gt;Not Really.&lt;BR /&gt;i want the result &amp;lt;25% budget or &amp;gt;25% budget based on the quarter no. during the year.&lt;/P&gt;</description>
      <pubDate>Mon, 30 May 2022 10:51:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure/m-p/2547602#M71988</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-05-30T10:51:56Z</dc:date>
    </item>
    <item>
      <title>Re: DAX measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure/m-p/2554329#M72427</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;Do you mean something like this?&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure =
VAR Count_SelectedQuar =
    COUNTROWS ( VALUES ( 'Table'[Quarter] ) )
RETURN
    SWITCH ( Count_SelectedQuar, 1, 0.25, 2, 0.50, 3, 0.75, 1.00 )
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or,&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure =
VAR Count_SelectedQuar =
    COUNTROWS ( VALUES ( 'Table'[Quarter] ) )
RETURN
    SWITCH ( Count_SelectedQuar, 1, "25%", 2, "50%", 3, "75%", "100%" )
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Icey&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jun 2022 06:06:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure/m-p/2554329#M72427</guid>
      <dc:creator>Icey</dc:creator>
      <dc:date>2022-06-02T06:06:07Z</dc:date>
    </item>
  </channel>
</rss>

