<?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: Create a DAX that returns the title of the event within event schedule in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-that-returns-the-title-of-the-event-within-event/m-p/3906758#M152197</link>
    <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 10 May 2024 00:51:30 GMT</pubDate>
    <dc:creator>lbendlin</dc:creator>
    <dc:date>2024-05-10T00:51:30Z</dc:date>
    <item>
      <title>Create a DAX that returns the title of the event within event schedule</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-that-returns-the-title-of-the-event-within-event/m-p/3905982#M152163</link>
      <description>&lt;P&gt;Hi. I'm having a hard time for days thinking of how to create my DAX measure. I would highly appreciate your help.&lt;BR /&gt;&lt;BR /&gt;I want to create a DAX that returns the title of the event if the start and end date of viewers fall within the range of time of the event schedule. The event schedule does not exist in my Power BI model. It is just a reference regarding the order of the online event. The Viewers table is the table I have in my data model. I wish to have this scenario/output.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;Person A joined and left the online event between 7:00am to 8:00 am, therefore the output is 'Data Driven Decision'.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Person C, the output is 'Data Driven Decision', 'Litmus', 'Productivity', and 'Education' since it overlaps to 4 sessions of the online event.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I tried this DAX but it does not work for overalapping start time and end time of viewers based on event schedule.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sessions Attended =&lt;/P&gt;&lt;P&gt;DDD_Viewers[start_time] &amp;gt;= TIME(07,00,00) &amp;amp;&amp;amp;&lt;BR /&gt;DDD_Viewers[end_time] &amp;lt; TIME(08,00,00) , "Data Driven Decision",&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;DDD_Viewers[start_time] &amp;gt;= TIME(08,00,00) &amp;amp;&amp;amp;&lt;BR /&gt;DDD_Viewers[end_time] &amp;lt; TIME(09,00,00) &amp;amp;&amp;amp; DDD_Viewers[PK_Room] = "4" , "Litmus"&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Third&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 May 2024 15:54:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-that-returns-the-title-of-the-event-within-event/m-p/3905982#M152163</guid>
      <dc:creator>third_hicana</dc:creator>
      <dc:date>2024-05-09T15:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: Create a DAX that returns the title of the event within event schedule</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-that-returns-the-title-of-the-event-within-event/m-p/3906758#M152197</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 May 2024 00:51:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-that-returns-the-title-of-the-event-within-event/m-p/3906758#M152197</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-05-10T00:51:30Z</dc:date>
    </item>
    <item>
      <title>Re: Create a DAX that returns the title of the event within event schedule</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-that-returns-the-title-of-the-event-within-event/m-p/3907262#M152205</link>
      <description>&lt;P&gt;Hi Ibendlin,&lt;/P&gt;&lt;P&gt;Thank you for your help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A slight modification of what you've created.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a chance that instead of Concatenated session titles attended by a person, the return is the COUNT of title attended?&lt;BR /&gt;&lt;BR /&gt;So for example. FOr Person D, the return should be 4&lt;/P&gt;</description>
      <pubDate>Fri, 10 May 2024 05:11:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-that-returns-the-title-of-the-event-within-event/m-p/3907262#M152205</guid>
      <dc:creator>third_hicana</dc:creator>
      <dc:date>2024-05-10T05:11:45Z</dc:date>
    </item>
    <item>
      <title>Re: Create a DAX that returns the title of the event within event schedule</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-that-returns-the-title-of-the-event-within-event/m-p/3908592#M152241</link>
      <description>&lt;P&gt;Yes, replace CONCATENATEX with COUNTROWS.&lt;/P&gt;</description>
      <pubDate>Fri, 10 May 2024 11:33:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-that-returns-the-title-of-the-event-within-event/m-p/3908592#M152241</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-05-10T11:33:29Z</dc:date>
    </item>
    <item>
      <title>Re: Create a DAX that returns the title of the event within event schedule</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-that-returns-the-title-of-the-event-within-event/m-p/3913608#M152367</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="100342" data-lia-user-login="lbendlin" class="lia-mention lia-mention-user"&gt;lbendlin&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Asking for your help again. Is there a chance to count the unique persons per event. It's like the reverse of what you've done.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example:&amp;nbsp;&lt;/P&gt;&lt;P&gt;Productivity has 3 unique persons which are Person C, D and E based on time in and time since they fall between 9am to 10am.&lt;BR /&gt;&lt;BR /&gt;Appreciate your help.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;-Third&lt;/P&gt;</description>
      <pubDate>Mon, 13 May 2024 10:28:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-that-returns-the-title-of-the-event-within-event/m-p/3913608#M152367</guid>
      <dc:creator>third_hicana</dc:creator>
      <dc:date>2024-05-13T10:28:28Z</dc:date>
    </item>
    <item>
      <title>Re: Create a DAX that returns the title of the event within event schedule</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-that-returns-the-title-of-the-event-within-event/m-p/3915061#M152415</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Calculated column in 'Event Schedule' Table:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Person Count = 
var GS = GENERATESERIES(Round([Start]*1440,0),Round([End]*1440-1,0))
var ev = ADDCOLUMNS(Viewers,"o",COUNTROWS(INTERSECT(GENERATESERIES(ROUND([Enter]*1440,0),Round([Exit]*1440,0)),GS)))
return Countrows(FILTER(ev,[o]&amp;gt;0))&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 May 2024 20:39:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-that-returns-the-title-of-the-event-within-event/m-p/3915061#M152415</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-05-13T20:39:54Z</dc:date>
    </item>
    <item>
      <title>Re: Create a DAX that returns the title of the event within event schedule</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-that-returns-the-title-of-the-event-within-event/m-p/3915586#M152437</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="100342" data-lia-user-login="lbendlin" class="lia-mention lia-mention-user"&gt;lbendlin&lt;/a&gt;&amp;nbsp; Thank you very much&lt;/P&gt;</description>
      <pubDate>Tue, 14 May 2024 02:25:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-that-returns-the-title-of-the-event-within-event/m-p/3915586#M152437</guid>
      <dc:creator>third_hicana</dc:creator>
      <dc:date>2024-05-14T02:25:44Z</dc:date>
    </item>
  </channel>
</rss>

