<?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: The AVERAGE time between pages in sessions in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-AVERAGE-time-between-pages-in-sessions/m-p/1629784#M33017</link>
    <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;, Try&amp;nbsp; measuere like&amp;nbsp;&lt;/P&gt;
&lt;P&gt;diff duration between page= max([session_start_time]) - maxx(filter(allselected(Table), [session_id] =max([session_id]) &amp;amp;&amp;amp; [start_time] &amp;lt;max([start_time])),[start_time])&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;averagex(summarize(Table, Table[seesion_id], table[Page], table[start_time], "_1", datediff(max([session_start_time]) , maxx(filter(allselected(Table), [session_id] =max([session_id]) &amp;amp;&amp;amp; [start_time] &amp;lt;max([start_time])),[start_time]),minute)),[_1])&lt;/P&gt;</description>
    <pubDate>Thu, 28 Jan 2021 17:24:01 GMT</pubDate>
    <dc:creator>amitchandak</dc:creator>
    <dc:date>2021-01-28T17:24:01Z</dc:date>
    <item>
      <title>The AVERAGE time between pages in sessions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-AVERAGE-time-between-pages-in-sessions/m-p/1625533#M32863</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;I created summarize a table like this:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Now, I need to calculate&amp;nbsp;&lt;U&gt;measure&lt;/U&gt;&amp;nbsp;with&amp;nbsp; AVG time between pages in each session&amp;nbsp;&lt;BR /&gt;That is,&lt;BR /&gt;First-page entry: 13:38:18&lt;BR /&gt;Second-page entry : 13:52:31&lt;BR /&gt;So the difference between these times is the time between two pages......&lt;BR /&gt;&lt;BR /&gt;How it possible?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2021 08:12:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-AVERAGE-time-between-pages-in-sessions/m-p/1625533#M32863</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-01-27T08:12:31Z</dc:date>
    </item>
    <item>
      <title>Re: The AVERAGE time between pages in sessions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-AVERAGE-time-between-pages-in-sessions/m-p/1625637#M32865</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , Create a new column like&lt;/P&gt;
&lt;P&gt;diff duration between page= [session_start_time] - maxx(filter(Table, [session_id] =earlier([session_id]) &amp;amp;&amp;amp; [start_time] &amp;lt;earlier([start_time])),[start_time])&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2021 08:51:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-AVERAGE-time-between-pages-in-sessions/m-p/1625637#M32865</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2021-01-27T08:51:05Z</dc:date>
    </item>
    <item>
      <title>Re: The AVERAGE time between pages in sessions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-AVERAGE-time-between-pages-in-sessions/m-p/1626648#M32904</link>
      <description>&lt;P&gt;Thanks for the reply,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="148838" data-lia-user-login="amitchandak" class="lia-mention lia-mention-user"&gt;amitchandak&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I need to make this a measure, not as a custom column&lt;BR /&gt;So I cant to add this column to&amp;nbsp; the temporary table in measure&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2021 16:35:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-AVERAGE-time-between-pages-in-sessions/m-p/1626648#M32904</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-01-27T16:35:51Z</dc:date>
    </item>
    <item>
      <title>Re: The AVERAGE time between pages in sessions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-AVERAGE-time-between-pages-in-sessions/m-p/1629784#M33017</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;, Try&amp;nbsp; measuere like&amp;nbsp;&lt;/P&gt;
&lt;P&gt;diff duration between page= max([session_start_time]) - maxx(filter(allselected(Table), [session_id] =max([session_id]) &amp;amp;&amp;amp; [start_time] &amp;lt;max([start_time])),[start_time])&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;averagex(summarize(Table, Table[seesion_id], table[Page], table[start_time], "_1", datediff(max([session_start_time]) , maxx(filter(allselected(Table), [session_id] =max([session_id]) &amp;amp;&amp;amp; [start_time] &amp;lt;max([start_time])),[start_time]),minute)),[_1])&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2021 17:24:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-AVERAGE-time-between-pages-in-sessions/m-p/1629784#M33017</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2021-01-28T17:24:01Z</dc:date>
    </item>
  </channel>
</rss>

