<?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 Formula and Measure Question in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-and-Measure-Question/m-p/2907805#M94921</link>
    <description>&lt;DIV&gt;Supposing your table named Data, try to add a column with the code below:&lt;/DIV&gt;&lt;DIV&gt;PctRange =&lt;/DIV&gt;&lt;DIV&gt;SWITCH(&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; TRUE(),&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;Data[&lt;SPAN&gt;% of PP Progress&lt;/SPAN&gt;] &amp;lt;=0.25,&amp;nbsp;&lt;SPAN&gt;"0-25%",&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; Data[% of PP Progress] &amp;lt;=0.5,&amp;nbsp;&lt;SPAN&gt;"26%-50%",&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Data[&lt;SPAN&gt;% of PP Progress&lt;/SPAN&gt;] &amp;lt;=0.75,&amp;nbsp;&lt;SPAN&gt;"51%-75%",&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"76%-100%"&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;</description>
    <pubDate>Tue, 15 Nov 2022 21:32:48 GMT</pubDate>
    <dc:creator>FreemanZ</dc:creator>
    <dc:date>2022-11-15T21:32:48Z</dc:date>
    <item>
      <title>DAX Formula and Measure Question</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-and-Measure-Question/m-p/2907244#M94897</link>
      <description>&lt;P&gt;Hello everyone! My data is depicted below (1st picture). It is pretty simple, I created the Total Subtasks Completed and the % of PP Progress columns. The total subtasks completed is the sum of the all the different subtask result columns, and the % of PP progress uses the values in the Total Subtasks completed columns divided by 17 because thats how many different subtasks there are. On the second picture I attached, I made a quick table visual which shows how many subtasks and their % of PP progress a person has. I was looking to create a measure or column which can bucket the % of PP Progress into a 25% bucket. Such as those between 0 and 25% are in 1, 26-50% in another, 51-75% in a third, and lastly 76-100%. Is there a DAX Calculation I can use to make this successful?&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Nov 2022 17:04:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-and-Measure-Question/m-p/2907244#M94897</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-11-15T17:04:19Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Formula and Measure Question</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-and-Measure-Question/m-p/2907272#M94899</link>
      <description>&lt;P&gt;You can group your data without DAX! Click the column you're wanting to group and under column tools &amp;gt; data groups &amp;gt; New data groups&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Then you can toss those %s in buckets&lt;/P&gt;</description>
      <pubDate>Tue, 15 Nov 2022 17:16:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-and-Measure-Question/m-p/2907272#M94899</guid>
      <dc:creator>Syk</dc:creator>
      <dc:date>2022-11-15T17:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Formula and Measure Question</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-and-Measure-Question/m-p/2907725#M94916</link>
      <description>&lt;P&gt;I never knew this! When I tried to do it, I got this popup which I've never seen before.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Nov 2022 20:37:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-and-Measure-Question/m-p/2907725#M94916</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-11-15T20:37:08Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Formula and Measure Question</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-and-Measure-Question/m-p/2907805#M94921</link>
      <description>&lt;DIV&gt;Supposing your table named Data, try to add a column with the code below:&lt;/DIV&gt;&lt;DIV&gt;PctRange =&lt;/DIV&gt;&lt;DIV&gt;SWITCH(&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; TRUE(),&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;Data[&lt;SPAN&gt;% of PP Progress&lt;/SPAN&gt;] &amp;lt;=0.25,&amp;nbsp;&lt;SPAN&gt;"0-25%",&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; Data[% of PP Progress] &amp;lt;=0.5,&amp;nbsp;&lt;SPAN&gt;"26%-50%",&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Data[&lt;SPAN&gt;% of PP Progress&lt;/SPAN&gt;] &amp;lt;=0.75,&amp;nbsp;&lt;SPAN&gt;"51%-75%",&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"76%-100%"&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 15 Nov 2022 21:32:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-and-Measure-Question/m-p/2907805#M94921</guid>
      <dc:creator>FreemanZ</dc:creator>
      <dc:date>2022-11-15T21:32:48Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Formula and Measure Question</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-and-Measure-Question/m-p/2907810#M94922</link>
      <description>&lt;P&gt;I got this error when I tried it&amp;nbsp;&amp;lt;ccon&amp;gt;A circular dependency was detected: PP-Task Completion[% of PP Progress], PP-Task Completion[PctRange], PP-Task Completion[% of PP Progress].&amp;lt;/ccon&amp;gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Nov 2022 21:35:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-and-Measure-Question/m-p/2907810#M94922</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-11-15T21:35:54Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Formula and Measure Question</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-and-Measure-Question/m-p/2907848#M94927</link>
      <description>&lt;DIV&gt;&lt;SPAN&gt;Rewrite your column as below:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;% of PP Progress =&lt;/DIV&gt;&lt;DIV&gt;CALCULATE(&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;DIVIDE(Data[&lt;SPAN&gt;Total Subtasks completed&lt;/SPAN&gt;],17),&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ALLEXCEPT (Data[Total Subtasks completed])&lt;/DIV&gt;&lt;DIV&gt;)&lt;/DIV&gt;</description>
      <pubDate>Tue, 15 Nov 2022 22:05:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-and-Measure-Question/m-p/2907848#M94927</guid>
      <dc:creator>FreemanZ</dc:creator>
      <dc:date>2022-11-15T22:05:30Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Formula and Measure Question</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-and-Measure-Question/m-p/2943789#M97314</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;Try a measure like below:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure =
var %Progress = sum([% of PP Progress])
Return
SWITCH(
    TRUE(),
    %Progress &amp;lt;= 0.25, 1,
    %Progress &amp;gt; 0.25 &amp;amp;&amp;amp; %Progress &amp;lt; = 0.5, 2,
    %Progress &amp;gt; 0.5 &amp;amp;&amp;amp; %Progress &amp;lt;=0.75, 3,
    4
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Dec 2022 07:18:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-and-Measure-Question/m-p/2943789#M97314</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-12-02T07:18:47Z</dc:date>
    </item>
  </channel>
</rss>

