Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

How to calculate time duration of a session from a column?

Hi,

I have session events data in a table like this, how would you approach calculating time duration per session? 

AndrejBI_0-1617785297144.png

As you can see, a red and a blue circles are 2 different sessions the data is sorted descending. The logic behind the calculation should be something like Max timestamp value - min timestamp value segmented by Session ID. So for the red circle it would be 4:53

 

2 ACCEPTED SOLUTIONS
v-yuaj-msft
Community Support
Community Support

Hi @Anonymous ,

 

Based on your description, you can create a measure as follows.

Here is my test table.

v-yuaj-msft_0-1617940532127.png

Test = 

var x1=MAXX(FILTER(ALL('Table'),[session id]=SELECTEDVALUE('Table'[session id])),[timestamp])

var x2=MINX(FILTER(ALL('Table'),[session id]=SELECTEDVALUE('Table'[session id])),[timestamp])

return

x1-x2
v-yuaj-msft_1-1617940556038.png

Result:

v-yuaj-msft_2-1617940605351.png

Hope that's what you were looking for.

Best Regards,

Yuna

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

Here's a screenshot

Gabriel_Walkman_0-1618384446549.png

 

View solution in original post

6 REPLIES 6
v-yuaj-msft
Community Support
Community Support

Hi @Anonymous ,

 

Based on your description, you can create a measure as follows.

Here is my test table.

v-yuaj-msft_0-1617940532127.png

Test = 

var x1=MAXX(FILTER(ALL('Table'),[session id]=SELECTEDVALUE('Table'[session id])),[timestamp])

var x2=MINX(FILTER(ALL('Table'),[session id]=SELECTEDVALUE('Table'[session id])),[timestamp])

return

x1-x2
v-yuaj-msft_1-1617940556038.png

Result:

v-yuaj-msft_2-1617940605351.png

Hope that's what you were looking for.

Best Regards,

Yuna

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Gabriel_Walkman
Continued Contributor
Continued Contributor

In power query, I would copy and rename the table (if you need the intermediate timestamps for something), rename timestamp to starttime, make a copy of it called endtime, then group by id and in the popup add min/max aggregation accordingly for start/endtime.

Edit: oh and then use the pre-existing time intelligence functions to get the duration from starttime and endttime columns.

Anonymous
Not applicable

Sounds very logical, will try this one thanks! Nevertheless, I am not sure what sort of intelligence functions you are talking about. 

Here's a screenshot

Gabriel_Walkman_0-1618384446549.png

 

amitchandak
Super User
Super User

@Anonymous , do you have any column like session id?

Anonymous
Not applicable

Yes, I do! 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.