<?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: AGGREGATED COLUMN in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/AGGREGATED-COLUMN/m-p/3884275#M151564</link>
    <description>&lt;P&gt;basically i just want a status (count using card) for:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. module&lt;/P&gt;&lt;P&gt;2. submodule&lt;/P&gt;&lt;P&gt;3. strategy&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but all this are bind with the status of activity either done, ongoing or pending.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;example:&lt;/P&gt;&lt;P&gt;1. for submodule 1.1, considered in done(green) because all the activity in this submodule &amp;gt; strategy is done.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. for submodule 1.2, it is considered ongoing (yellow) because the status of one of its strategy is still ongoing, therefore this submodule is ongoing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;status for activity not a problem..but i cannot find a solution how to match the bigger scope (module/submodule/strategy) with the status of activity.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 02 May 2024 01:44:01 GMT</pubDate>
    <dc:creator>zahid_sabri</dc:creator>
    <dc:date>2024-05-02T01:44:01Z</dc:date>
    <item>
      <title>AGGREGATED COLUMN</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/AGGREGATED-COLUMN/m-p/3878376#M151419</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not a pro in Power BI, but have some experience. Is there a way to calculate the status of column A to C based on status of column D?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 08:23:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/AGGREGATED-COLUMN/m-p/3878376#M151419</guid>
      <dc:creator>zahid_sabri</dc:creator>
      <dc:date>2024-04-30T08:23:17Z</dc:date>
    </item>
    <item>
      <title>Re: AGGREGATED COLUMN</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/AGGREGATED-COLUMN/m-p/3878835#M151424</link>
      <description>&lt;P&gt;Could you share sample output, what kind of output are looking exactly&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 09:55:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/AGGREGATED-COLUMN/m-p/3878835#M151424</guid>
      <dc:creator>bhanu_gautam</dc:creator>
      <dc:date>2024-04-30T09:55:36Z</dc:date>
    </item>
    <item>
      <title>Re: AGGREGATED COLUMN</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/AGGREGATED-COLUMN/m-p/3884275#M151564</link>
      <description>&lt;P&gt;basically i just want a status (count using card) for:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. module&lt;/P&gt;&lt;P&gt;2. submodule&lt;/P&gt;&lt;P&gt;3. strategy&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but all this are bind with the status of activity either done, ongoing or pending.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;example:&lt;/P&gt;&lt;P&gt;1. for submodule 1.1, considered in done(green) because all the activity in this submodule &amp;gt; strategy is done.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. for submodule 1.2, it is considered ongoing (yellow) because the status of one of its strategy is still ongoing, therefore this submodule is ongoing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;status for activity not a problem..but i cannot find a solution how to match the bigger scope (module/submodule/strategy) with the status of activity.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2024 01:44:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/AGGREGATED-COLUMN/m-p/3884275#M151564</guid>
      <dc:creator>zahid_sabri</dc:creator>
      <dc:date>2024-05-02T01:44:01Z</dc:date>
    </item>
    <item>
      <title>Re: AGGREGATED COLUMN</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/AGGREGATED-COLUMN/m-p/3884647#M151574</link>
      <description>&lt;P&gt;for now, I already tried this for strategy completion but the result not showing as needed because it show completed activity within same strategy as not complete while if all activity in same strategy completed, it not showing the strategy as complete. I think if I can pull this one, for other status (Module &amp;amp; Submodule) will be the same right?&lt;/P&gt;&lt;PRE&gt;Strategy Completion = 
IF(
    COUNTROWS(FILTER('YourTable', 'YourTable'[Activity Status] = "Complete")) = COUNTROWS(FILTER('YourTable', 'YourTable'[Submodule] = EARLIER('YourTable'[Submodule]))),
    "Complete",
    "Not Complete"
)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2024 04:38:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/AGGREGATED-COLUMN/m-p/3884647#M151574</guid>
      <dc:creator>zahid_sabri</dc:creator>
      <dc:date>2024-05-02T04:38:48Z</dc:date>
    </item>
  </channel>
</rss>

