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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
leonardosilva
Regular Visitor

How to calculate duration between events in a events table

Hi there,

 

I have a database that contains a list of users events in my App, basically where and when they click. The collumns I have are User ID, event type (as login, product selection, cart, payment options and confirmation) and time (in timestamp). I wanna know how many time users spend in each action using this data.

 

This can be done by creating a collumn that contains the time diference between two consectutive events of the same user (the first event can be ignored), but I coudn´t find a way to realize this. I have also tried to use the function EARLIER, but since my database is 20000 rows long, it keeps loading for minutes until I give up on it.

 

Can Power BI do this?

 

4 REPLIES 4
vivran22
Community Champion
Community Champion

Hello @leonardosilva ,

 

Can you please share a sample data set along with the expected outcome?

 

Cheers!
Vivek

https://www.vivran.in/
Connect on LinkedIn

 

This is the desired outcome and an example I did with the EARLIER function:

 

Exemplo.png

 

When I applied this to the original database, it took 26 minutes to display a mensage saying I don´t have enough memory (I have 8GB) to make the process.

 

Hi @leonardosilva ,

 

Please try this one.

Column = 
VAR t = 'Plan1'[timestamp]
VAR last =
    CALCULATE (
        MAX ( 'Plan1'[timestamp] ),
        FILTER (
            'Plan1',
            'Plan1'[timestamp] < t
                && 'Plan1'[userid] = EARLIER ( 'Plan1'[userid] )
        )
    )
RETURN
    t - last

Capture.PNG

 

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

Hi, @v-frfei-msft 

 

I´ve tried this solution in my database but it also took 35 minutes and again displayed a mensage saying I don´t have enought memory. This is probably happening because my database is 20000+ rows long. Do you know another way to solve this using less memory?

 

 

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.