<?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 do I show a Project Size; Project Count, and Total Story Points per Project Size on one Power Bi in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-show-a-Project-Size-Project-Count-and-Total-Story/m-p/2941862#M97207</link>
    <description>&lt;P&gt;Dear All, Thank you for the feedback received in this regard. I will try the options suggested. Much appreciated.&lt;/P&gt;</description>
    <pubDate>Thu, 01 Dec 2022 12:29:19 GMT</pubDate>
    <dc:creator>KubenM</dc:creator>
    <dc:date>2022-12-01T12:29:19Z</dc:date>
    <item>
      <title>How do I show a Project Size; Project Count, and Total Story Points per Project Size on one Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-show-a-Project-Size-Project-Count-and-Total-Story/m-p/2938823#M96971</link>
      <description>&lt;P&gt;Hello&lt;BR /&gt;How to I show a Project Size; Project Count per Size, and Total Story Points per Project Size on one Power Bi Visual?&lt;/P&gt;&lt;P&gt;Example:&lt;BR /&gt;I have 3 Project sizes i.e. Small, Medium, and large. These values are visible in one column in my data set.&lt;BR /&gt;I created a Lookup table to define the number of Story Points that each project size would equate to.&lt;BR /&gt;Project Story Points Definition:&lt;BR /&gt;Small = 50&lt;BR /&gt;Medium = 100&lt;BR /&gt;Large = 150&lt;/P&gt;&lt;P&gt;If I have 2 small projects; 1 medium project, and 3 large projects to complete in Year 2022, how do I show the number of projects per size and the total Story per size. ie. 2 x Small = 100; 1 x Medium = 100; 3 x Large = 450 on one Power Bi visual in year 2022.&lt;BR /&gt;In year 2023 I will need to show the same and so on.&lt;/P&gt;&lt;P&gt;I would really appreciate your assistance in this regard. My DAX knowledge in near to non-existent.&lt;BR /&gt;Thank you&lt;BR /&gt;Kuben&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2022 12:22:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-show-a-Project-Size-Project-Count-and-Total-Story/m-p/2938823#M96971</guid>
      <dc:creator>KubenM</dc:creator>
      <dc:date>2022-11-30T12:22:28Z</dc:date>
    </item>
    <item>
      <title>Re: How do I show a Project Size; Project Count, and Total Story Points per Project Size on one Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-show-a-Project-Size-Project-Count-and-Total-Story/m-p/2938981#M96980</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="479556" data-lia-user-login="KubenM" class="lia-mention lia-mention-user"&gt;KubenM&lt;/a&gt; , You need somung like &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;concatenatex (values(table[Project]) , calculate([Count meausre] &amp;amp; " " &amp;amp; Max(table[Project]) &amp;amp; " " &amp;amp; [Other measure], " ; ")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use unichar(10)&amp;nbsp; for the new line. You can display it on card visual&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2022 13:25:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-show-a-Project-Size-Project-Count-and-Total-Story/m-p/2938981#M96980</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-11-30T13:25:49Z</dc:date>
    </item>
    <item>
      <title>Re: How do I show a Project Size; Project Count, and Total Story Points per Project Size on one Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-show-a-Project-Size-Project-Count-and-Total-Story/m-p/2941424#M97175</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="479556" data-lia-user-login="KubenM" class="lia-mention lia-mention-user"&gt;KubenM&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Like this?&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Just create a measure to count rows and a column to calculate total value, as the following shows:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;countrows = CALCULATE(COUNTROWS('Table'),FILTER(ALL('Table'),'Table'[item]=SELECTEDVALUE('Table'[item])))&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Total = 'Table'[value]*[countrows]&lt;/LI-CODE&gt;
&lt;P&gt;You can also refer to my pbix file for better understanding.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Community Support Team&amp;nbsp;&lt;STRONG&gt;Selina&amp;nbsp;zhu&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&amp;nbsp;&lt;/EM&gt;&lt;/STRONG&gt;to help the other members find it more quickly&lt;/P&gt;</description>
      <pubDate>Thu, 01 Dec 2022 09:07:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-show-a-Project-Size-Project-Count-and-Total-Story/m-p/2941424#M97175</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-12-01T09:07:20Z</dc:date>
    </item>
    <item>
      <title>Re: How do I show a Project Size; Project Count, and Total Story Points per Project Size on one Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-show-a-Project-Size-Project-Count-and-Total-Story/m-p/2941862#M97207</link>
      <description>&lt;P&gt;Dear All, Thank you for the feedback received in this regard. I will try the options suggested. Much appreciated.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Dec 2022 12:29:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-show-a-Project-Size-Project-Count-and-Total-Story/m-p/2941862#M97207</guid>
      <dc:creator>KubenM</dc:creator>
      <dc:date>2022-12-01T12:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: How do I show a Project Size; Project Count, and Total Story Points per Project Size on one Power Bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-show-a-Project-Size-Project-Count-and-Total-Story/m-p/2941963#M97213</link>
      <description>&lt;P&gt;Thank you for your time and effort in this regard Selina.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Dec 2022 13:20:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-show-a-Project-Size-Project-Count-and-Total-Story/m-p/2941963#M97213</guid>
      <dc:creator>KubenM</dc:creator>
      <dc:date>2022-12-01T13:20:23Z</dc:date>
    </item>
  </channel>
</rss>

