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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
rebrow31
Helper I
Helper I

Calculating time until the shot

Hi, 

 

I have a list of several machines, and their shot date/times. Sample data is below: 

 

rebrow31_1-1748003638399.png

 

 

I would like to calculate the time between each shot so I can do an average. For example, machine 1 had a shot time of 9 seconds, first, then 8 seconds etc. How do I calculate the times between the shots by both machines and part. I then want to gether these times and be able to average it out. 

 

thanks

2 ACCEPTED SOLUTIONS
bhanu_gautam
Super User
Super User

@rebrow31 

Create a new column for DateTime:

DateTime = [DATE] & " " & [TIME]

 

Sort your data by Machine, Part, and DateTime.

 

Create an index column:

Index = RANKX(FILTER('Table', 'Table'[MACHINE] = EARLIER('Table'[MACHINE]) && 'Table'[Part] = EARLIER('Table'[Part])), 'Table'[DateTime], , ASC, DENSE)

 

Create a calculated column for the time difference:

TimeDifference =
VAR CurrentIndex = 'Table'[Index]
VAR PreviousDateTime = CALCULATE(MAX('Table'[DateTime]), FILTER('Table', 'Table'[MACHINE] = EARLIER('Table'[MACHINE]) && 'Table'[Part] = EARLIER('Table'[Part]) && 'Table'[Index] = CurrentIndex - 1))
RETURN
DATEDIFF(PreviousDateTime, 'Table'[DateTime], SECOND)

 

Create a measure for the average time difference:

AverageTimeDifference = AVERAGEX('Table', 'Table'[TimeDifference])




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






View solution in original post

V-yubandi-msft
Community Support
Community Support

Hi @rebrow31 ,

Thank you for being part of the Microsoft Fabric Community. @bhanu_gautam ,shared valuable insights, and I’ve tested the solution with sample data it meets your requirements exactly.  For your convenience, I’ve attached the .pbix file with the full implementation.

 

Step1: Create a DateTime Column

DateTime = 'Table'[DATE] & " " & 'Table'[TIME]

Step2: Create an Index Column

In the Modeling tab, add a calculated column

Index = 
RANKX(
    FILTER(
        'Table', 
        'Table'[MACHINE] = EARLIER('Table'[MACHINE]) && 
        'Table'[Part] = EARLIER('Table'[Part])
    ), 
    'Table'[DateTime], 
    , 
    ASC, 
    DENSE
)

Step3: Calculate the Time Difference Between Shots

TimeDifference = 
VAR CurrentIndex = 'Table'[Index]
VAR PreviousDateTime = 
    CALCULATE(
        MAX('Table'[DateTime]), 
        FILTER(
            'Table', 
            'Table'[MACHINE] = EARLIER('Table'[MACHINE]) && 
            'Table'[Part] = EARLIER('Table'[Part]) && 
            'Table'[Index] = CurrentIndex - 1
        )
    )
RETURN
IF(
    ISBLANK(PreviousDateTime), 
    BLANK(), 
    DATEDIFF(PreviousDateTime, 'Table'[DateTime], SECOND)
)

Step4: Create a measure to find the average of the time differences

AverageTimeDifference = AVERAGEX('Table', 'Table'[TimeDifference])

 

Output:

 

Vyubandimsft_0-1748253237795.png

 

If my response solved your query, please mark it as the Accepted solution to help others find it easily. And if my answer was helpful, I'd really appreciate a 'Kudos'.

View solution in original post

2 REPLIES 2
V-yubandi-msft
Community Support
Community Support

Hi @rebrow31 ,

Thank you for being part of the Microsoft Fabric Community. @bhanu_gautam ,shared valuable insights, and I’ve tested the solution with sample data it meets your requirements exactly.  For your convenience, I’ve attached the .pbix file with the full implementation.

 

Step1: Create a DateTime Column

DateTime = 'Table'[DATE] & " " & 'Table'[TIME]

Step2: Create an Index Column

In the Modeling tab, add a calculated column

Index = 
RANKX(
    FILTER(
        'Table', 
        'Table'[MACHINE] = EARLIER('Table'[MACHINE]) && 
        'Table'[Part] = EARLIER('Table'[Part])
    ), 
    'Table'[DateTime], 
    , 
    ASC, 
    DENSE
)

Step3: Calculate the Time Difference Between Shots

TimeDifference = 
VAR CurrentIndex = 'Table'[Index]
VAR PreviousDateTime = 
    CALCULATE(
        MAX('Table'[DateTime]), 
        FILTER(
            'Table', 
            'Table'[MACHINE] = EARLIER('Table'[MACHINE]) && 
            'Table'[Part] = EARLIER('Table'[Part]) && 
            'Table'[Index] = CurrentIndex - 1
        )
    )
RETURN
IF(
    ISBLANK(PreviousDateTime), 
    BLANK(), 
    DATEDIFF(PreviousDateTime, 'Table'[DateTime], SECOND)
)

Step4: Create a measure to find the average of the time differences

AverageTimeDifference = AVERAGEX('Table', 'Table'[TimeDifference])

 

Output:

 

Vyubandimsft_0-1748253237795.png

 

If my response solved your query, please mark it as the Accepted solution to help others find it easily. And if my answer was helpful, I'd really appreciate a 'Kudos'.

bhanu_gautam
Super User
Super User

@rebrow31 

Create a new column for DateTime:

DateTime = [DATE] & " " & [TIME]

 

Sort your data by Machine, Part, and DateTime.

 

Create an index column:

Index = RANKX(FILTER('Table', 'Table'[MACHINE] = EARLIER('Table'[MACHINE]) && 'Table'[Part] = EARLIER('Table'[Part])), 'Table'[DateTime], , ASC, DENSE)

 

Create a calculated column for the time difference:

TimeDifference =
VAR CurrentIndex = 'Table'[Index]
VAR PreviousDateTime = CALCULATE(MAX('Table'[DateTime]), FILTER('Table', 'Table'[MACHINE] = EARLIER('Table'[MACHINE]) && 'Table'[Part] = EARLIER('Table'[Part]) && 'Table'[Index] = CurrentIndex - 1))
RETURN
DATEDIFF(PreviousDateTime, 'Table'[DateTime], SECOND)

 

Create a measure for the average time difference:

AverageTimeDifference = AVERAGEX('Table', 'Table'[TimeDifference])




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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