<?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 to use Task Outline Numbers from MS Project to group together task in Power BI in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-Task-Outline-Numbers-from-MS-Project-to-group/m-p/1737697#M36076</link>
    <description>&lt;P&gt;Hi Steve, thank you very much for your reply and your attached file. I have a few questions (almost there!). Here is your example with my data.&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Measure3 = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Var _sel = SELECTEDVALUE('Tasks'[TaskOutlineNumber]) &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Var _NR = LEFT(_sel,3)&lt;EM&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;//&amp;nbsp; Creating a "grouping" based off of the first three digits of the TaskOutlineNumber - correct?&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;RETURN &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE(MIN('Tasks'[TaskFinishDate].[Day]), FILTER(ALLSELECTED('Tasks'),[TaskName]="TO Release" &amp;amp;&amp;amp; LEFT([TaskOutlineNumber],3) = _NR))//&lt;EM&gt;&lt;STRONG&gt;What is the FILTER doing here? Looking for any task with a Task Name that contains "TO Release" and is within the grouping? If I understood it better I might be able to make this work. Thanks so much!&amp;nbsp;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Mon, 22 Mar 2021 20:33:01 GMT</pubDate>
    <dc:creator>Pedagogic368</dc:creator>
    <dc:date>2021-03-22T20:33:01Z</dc:date>
    <item>
      <title>How to use Task Outline Numbers from MS Project to group together task in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-Task-Outline-Numbers-from-MS-Project-to-group/m-p/1725991#M35725</link>
      <description>&lt;P&gt;I have a MS Project with Site, Lot#, and Task Name. Each task has a start Finish Date and % complete. The Task Outline Number corresponds by site, Lot# and Task. For example:&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Site&lt;/TD&gt;&lt;TD&gt;Lot#&lt;/TD&gt;&lt;TD&gt;Task Name&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;Start Date&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;Finish Date&lt;/TD&gt;&lt;TD&gt;Task Outline Number&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Chicago&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;C1&lt;/TD&gt;&lt;TD&gt;Initiate&lt;/TD&gt;&lt;TD&gt;1/1/2021&lt;/TD&gt;&lt;TD&gt;1/1/2021&lt;/TD&gt;&lt;TD&gt;1.1.1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Chicago&lt;/TD&gt;&lt;TD&gt;C1&lt;/TD&gt;&lt;TD&gt;Release&lt;/TD&gt;&lt;TD&gt;1/1/2021&lt;/TD&gt;&lt;TD&gt;1/1/2021&lt;/TD&gt;&lt;TD&gt;1.1.2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Chicago&lt;/TD&gt;&lt;TD&gt;C1&lt;/TD&gt;&lt;TD&gt;Report&lt;/TD&gt;&lt;TD&gt;1/1/2021&lt;/TD&gt;&lt;TD&gt;(release date + 30 eDays)&lt;/TD&gt;&lt;TD&gt;1.1.3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Chicago&lt;/TD&gt;&lt;TD&gt;C4&lt;/TD&gt;&lt;TD&gt;Initiate&lt;/TD&gt;&lt;TD&gt;3/1/2021&lt;/TD&gt;&lt;TD&gt;3/1/2021&lt;/TD&gt;&lt;TD&gt;1.2.1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Chicago&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;C4&lt;/TD&gt;&lt;TD&gt;Release&lt;/TD&gt;&lt;TD&gt;3/1/2021&lt;/TD&gt;&lt;TD&gt;3/1/2021&lt;/TD&gt;&lt;TD&gt;1.2.2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Chicago&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;C4&lt;/TD&gt;&lt;TD&gt;Report&lt;/TD&gt;&lt;TD&gt;3/1/2021&lt;/TD&gt;&lt;TD&gt;(release date + 30 eDays)&lt;/TD&gt;&lt;TD&gt;1.2.3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Indiana&lt;/TD&gt;&lt;TD&gt;T2&lt;/TD&gt;&lt;TD&gt;Initiate&lt;/TD&gt;&lt;TD&gt;5/1/2021&lt;/TD&gt;&lt;TD&gt;5/1/2021&lt;/TD&gt;&lt;TD&gt;2.1.1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Indiana&lt;/TD&gt;&lt;TD&gt;T2&lt;/TD&gt;&lt;TD&gt;Release&lt;/TD&gt;&lt;TD&gt;5/1/2021&lt;/TD&gt;&lt;TD&gt;5/1/2021&lt;/TD&gt;&lt;TD&gt;2.2.1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Indiana&lt;/TD&gt;&lt;TD&gt;T2&lt;/TD&gt;&lt;TD&gt;Report&lt;/TD&gt;&lt;TD&gt;5/1/2021&lt;/TD&gt;&lt;TD&gt;(release date + 30 eDays)&lt;/TD&gt;&lt;TD&gt;2.2.3&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How would I go about writing a Dax expression that "links" together the Report - Finish Date from the report to the Release - start date, by "Group" ie Task Number. So if I wanted to know if the Report was finished for Chicago Lot C1, I would look at the Task Outline Number (1.1) find the Release date (1.1.2) and then group it with the corresponding Report (1.1.3) to check the finish date?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know it sounds confusing but there has to be a way to form "groups", right? Thanks.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Mar 2021 20:19:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-Task-Outline-Numbers-from-MS-Project-to-group/m-p/1725991#M35725</guid>
      <dc:creator>Pedagogic368</dc:creator>
      <dc:date>2021-03-16T20:19:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Task Outline Numbers from MS Project to group together task in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-Task-Outline-Numbers-from-MS-Project-to-group/m-p/1731173#M35862</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Update on the table information given above.&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The task ID is unique to each summary and there are Task Outline levels associated with each task (ie Task Outline Level - Parent summary task = Level 3&amp;nbsp; and child summary task (Initiate) = Level 4&amp;nbsp; . The report = Level 5)&lt;/P&gt;&lt;P&gt;Example for Chicago I want to link the Release Report (Level 5) Date to the Initiate Date on Level 4 :&lt;/P&gt;&lt;P&gt;Chicago. - The Parent Summary Task (Level 3)&amp;nbsp; Task Outline Number&amp;nbsp; = 1.1.1&lt;/P&gt;&lt;P&gt;Chicago - Initiate. Child Summary Task (Level 4) = 1.1.1.2&lt;/P&gt;&lt;P&gt;Chicago - Report. (Level 5) Task Outline Number 1.1.1.2.4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would I first form a Group of all the task under 1.1.1.X (write a DAX that says group first four digits). Extract the Finish Date associated with Initiate and then add +30edays to that date to calculate the Finish date the Report should be completed? Thoughts&lt;/P&gt;</description>
      <pubDate>Thu, 18 Mar 2021 18:19:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-Task-Outline-Numbers-from-MS-Project-to-group/m-p/1731173#M35862</guid>
      <dc:creator>Pedagogic368</dc:creator>
      <dc:date>2021-03-18T18:19:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Task Outline Numbers from MS Project to group together task in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-Task-Outline-Numbers-from-MS-Project-to-group/m-p/1731407#M35886</link>
      <description>&lt;P&gt;So I wrote this out -&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I took the Chicago - Report and I wrote a simple Dax expression that pulls out the ParentTaskName (in the example above the ParentTask Name is Chicago-Initiate. I called this Measure1.&amp;nbsp; (FYI - The ParentTaskName is a column that exist on the table). Simple!&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Measure1 = ('Tasks'[ParentTaskName])&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Now I need to extract the ParentTaskName for Measure1. &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I&amp;nbsp; would have to FIND in the table the TaskName = Measure1 ( in this example Chicago-Initiate) and then return the ParentTaskName for Chicago-Initiate (in this example it would be Chicago).&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Can anyone help me get to this next step? How would I first find the column with Chicago-Initiate AND THEN return the ParentTaskName of that task?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Any ideas please?&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 18 Mar 2021 23:10:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-Task-Outline-Numbers-from-MS-Project-to-group/m-p/1731407#M35886</guid>
      <dc:creator>Pedagogic368</dc:creator>
      <dc:date>2021-03-18T23:10:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Task Outline Numbers from MS Project to group together task in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-Task-Outline-Numbers-from-MS-Project-to-group/m-p/1733560#M35961</link>
      <description>&lt;P&gt;So far no help. So let me ask one more time for some advice.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":pensive_face:"&gt;😔&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Here is where I am at.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Each "grouping" has a similar TaskOutline number. So as I mentioned previously -&amp;nbsp;&lt;/P&gt;&lt;P&gt;Group A&lt;/P&gt;&lt;P&gt;Chicago is 1.1.1&lt;/P&gt;&lt;P&gt;Chicago- Initiation is 1.1.1.2&lt;/P&gt;&lt;P&gt;Chicago-Report is 1.1.1.4.2&amp;nbsp;&lt;/P&gt;&lt;P&gt;I truncated all to a value of 1.1.1&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Group B&lt;/P&gt;&lt;P&gt;Indiana is 2.1.1&lt;/P&gt;&lt;P&gt;Indiana - Initiation is 2.1.1.2&lt;/P&gt;&lt;P&gt;Indiana -Report is 2.1.1.4.2&amp;nbsp;&lt;/P&gt;&lt;P&gt;I truncated all to a value of 2.1.1&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, as you can see I have several differnt "groups" what I need to do is write a DAX expression that search within each group the Finish Date for the XXXXX-Initiate in each group and then the Start Date for the XXXXX-Report in the same group. HOW DO I DO THIS? THANKS in advance for your help. Please!&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":face_without_mouth:"&gt;😶&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Mar 2021 18:12:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-Task-Outline-Numbers-from-MS-Project-to-group/m-p/1733560#M35961</guid>
      <dc:creator>Pedagogic368</dc:creator>
      <dc:date>2021-03-19T18:12:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Task Outline Numbers from MS Project to group together task in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-Task-Outline-Numbers-from-MS-Project-to-group/m-p/1734061#M35976</link>
      <description>&lt;P&gt;Like this?&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure2 = 
VAR _sel = SELECTEDVALUE('Table'[Task Outline Number])
VAR _NR = LEFT(_sel,3)
RETURN
CALCULATE(MIN('Table'[Finish Date].[Date]), FILTER(ALLSELECTED('Table'), [Task Name ] = "Release" &amp;amp;&amp;amp;  LEFT([Task Outline Number],3) = _NR))
&lt;/LI-CODE&gt;
&lt;P&gt;File is attached.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind regards, Steve.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 20 Mar 2021 08:15:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-Task-Outline-Numbers-from-MS-Project-to-group/m-p/1734061#M35976</guid>
      <dc:creator>stevedep</dc:creator>
      <dc:date>2021-03-20T08:15:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Task Outline Numbers from MS Project to group together task in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-Task-Outline-Numbers-from-MS-Project-to-group/m-p/1737697#M36076</link>
      <description>&lt;P&gt;Hi Steve, thank you very much for your reply and your attached file. I have a few questions (almost there!). Here is your example with my data.&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Measure3 = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Var _sel = SELECTEDVALUE('Tasks'[TaskOutlineNumber]) &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Var _NR = LEFT(_sel,3)&lt;EM&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;//&amp;nbsp; Creating a "grouping" based off of the first three digits of the TaskOutlineNumber - correct?&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;RETURN &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE(MIN('Tasks'[TaskFinishDate].[Day]), FILTER(ALLSELECTED('Tasks'),[TaskName]="TO Release" &amp;amp;&amp;amp; LEFT([TaskOutlineNumber],3) = _NR))//&lt;EM&gt;&lt;STRONG&gt;What is the FILTER doing here? Looking for any task with a Task Name that contains "TO Release" and is within the grouping? If I understood it better I might be able to make this work. Thanks so much!&amp;nbsp;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 22 Mar 2021 20:33:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-Task-Outline-Numbers-from-MS-Project-to-group/m-p/1737697#M36076</guid>
      <dc:creator>Pedagogic368</dc:creator>
      <dc:date>2021-03-22T20:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Task Outline Numbers from MS Project to group together task in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-Task-Outline-Numbers-from-MS-Project-to-group/m-p/1746383#M36320</link>
      <description>&lt;P&gt;Steve. thanks so much for this helpful information. Can you kindly tell me how I would change the filter portion the code so that it does not have to = "release" but contains in the TASKNAME field the word release.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Right now it has to = (equal) "release"&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks so much,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Mar 2021 18:24:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-Task-Outline-Numbers-from-MS-Project-to-group/m-p/1746383#M36320</guid>
      <dc:creator>Pedagogic368</dc:creator>
      <dc:date>2021-03-25T18:24:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Task Outline Numbers from MS Project to group together task in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-Task-Outline-Numbers-from-MS-Project-to-group/m-p/1746394#M36322</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Welcome,&lt;/P&gt;
&lt;P&gt;Not sure what you mean?&lt;/P&gt;</description>
      <pubDate>Thu, 25 Mar 2021 18:33:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-Task-Outline-Numbers-from-MS-Project-to-group/m-p/1746394#M36322</guid>
      <dc:creator>stevedep</dc:creator>
      <dc:date>2021-03-25T18:33:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Task Outline Numbers from MS Project to group together task in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-Task-Outline-Numbers-from-MS-Project-to-group/m-p/1748661#M36379</link>
      <description>&lt;P&gt;HI Steve.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Currently in the Return we have a FILTER on the taskName so that it returns only those Task with the Name that equals (exactly) the word release.&amp;nbsp; However, the task name(s) actually "contains" the word "release".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So it would look something like this (but I cannot get the CONTAIN function to work). Does this help explain it?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;RETURN&lt;/P&gt;&lt;P&gt;CALCULATE (MIN('Table'[Finish Date].[Date]), &lt;EM&gt;CONTAINS&lt;/EM&gt;(ALLSELECTED('Table'), [Task Name] "Release"&lt;/P&gt;&lt;P&gt;Thanks -&lt;/P&gt;&lt;P&gt;BTW I have been responding but not all my responses get posted. I really appreciate your help. I am so close!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Mar 2021 16:15:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-Task-Outline-Numbers-from-MS-Project-to-group/m-p/1748661#M36379</guid>
      <dc:creator>Pedagogic368</dc:creator>
      <dc:date>2021-03-26T16:15:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Task Outline Numbers from MS Project to group together task in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-Task-Outline-Numbers-from-MS-Project-to-group/m-p/1748794#M36386</link>
      <description>&lt;P&gt;Then this should be it?&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure2 = 
VAR _sel = SELECTEDVALUE('Table'[Task Outline Number])
VAR _NR = LEFT(_sel,3)
RETURN
CALCULATE(MIN('Table'[Finish Date].[Date]), FILTER(ALLSELECTED('Table'), CONTAINSSTRING([Task Name ],"Release")  &amp;amp;&amp;amp;  LEFT([Task Outline Number],3) = _NR))
&lt;/LI-CODE&gt;
&lt;P&gt;File is attached.&lt;/P&gt;
&lt;P&gt;Kind regards, Steve.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Mar 2021 17:49:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-Task-Outline-Numbers-from-MS-Project-to-group/m-p/1748794#M36386</guid>
      <dc:creator>stevedep</dc:creator>
      <dc:date>2021-03-26T17:49:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Task Outline Numbers from MS Project to group together task in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-Task-Outline-Numbers-from-MS-Project-to-group/m-p/1748850#M36388</link>
      <description>&lt;P&gt;Thank you so much, this IS GREAT! I could not figure out how to add the CONTAINSSTRING.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;MUCH APPRECIATED&lt;/P&gt;</description>
      <pubDate>Fri, 26 Mar 2021 18:32:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-Task-Outline-Numbers-from-MS-Project-to-group/m-p/1748850#M36388</guid>
      <dc:creator>Pedagogic368</dc:creator>
      <dc:date>2021-03-26T18:32:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Task Outline Numbers from MS Project to group together task in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-Task-Outline-Numbers-from-MS-Project-to-group/m-p/1748895#M36390</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="291088" data-lia-user-login="Pedagogic368" class="lia-mention lia-mention-user"&gt;Pedagogic368&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thank you so much, this IS GREAT! I could not figure out how to add the CONTAINSSTRING.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;MUCH APPRECIATED&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Welcome, glad to be of help.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Mar 2021 19:09:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-Task-Outline-Numbers-from-MS-Project-to-group/m-p/1748895#M36390</guid>
      <dc:creator>stevedep</dc:creator>
      <dc:date>2021-03-26T19:09:23Z</dc:date>
    </item>
  </channel>
</rss>

