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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
fetster
Frequent Visitor

Calculating Duration Between In / Out Times

Hi. I have a table that has the following data:

 

TicketIDStatusTime
201In09:55
202In10:02
203In10:23
204In10:35
201Out10:49
205In10:53
206In11:21
202Out11:23
203Out11:31
204Out11:44

 

I would like to calculate the duration each TicketID has been in the building (Difference between In / Out Time for every TicketID).

 

Any suggestions how this could be calculated please? 

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi, @fetster 

Please check the below picture and the sample pbix file's link down below.

 

Picture2.png

 

duration measure =
VAR intime =
CALCULATE ( MAX ( 'Table'[Time] ), 'Table'[Status] = "In" )
VAR outtime =
CALCULATE ( MAX ( 'Table'[Time] ), 'Table'[Status] = "Out" )
VAR durations = outtime - intime
RETURN
IF ( ISFILTERED ( 'Table'[TicketID] ), durations )
 
 

Hi, My name is Jihwan Kim.


If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.


Linkedin: linkedin.com/in/jihwankim1975/

Twitter: twitter.com/Jihwan_JHKIM


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

View solution in original post

2 REPLIES 2
aj1973
Community Champion
Community Champion

Hi @fetster 

Here you have the choice to use cards and to return 0 when the satus for a ticket is not Out yet

aj1973_1-1622468478111.png

 

Don't forget to format the Time column and the card

 

 

Regards
Amine Jerbi

If I answered your question, please mark this thread as accepted
and you can follow me on
My Website, LinkedIn and Facebook

Jihwan_Kim
Super User
Super User

Hi, @fetster 

Please check the below picture and the sample pbix file's link down below.

 

Picture2.png

 

duration measure =
VAR intime =
CALCULATE ( MAX ( 'Table'[Time] ), 'Table'[Status] = "In" )
VAR outtime =
CALCULATE ( MAX ( 'Table'[Time] ), 'Table'[Status] = "Out" )
VAR durations = outtime - intime
RETURN
IF ( ISFILTERED ( 'Table'[TicketID] ), durations )
 
 

Hi, My name is Jihwan Kim.


If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.


Linkedin: linkedin.com/in/jihwankim1975/

Twitter: twitter.com/Jihwan_JHKIM


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

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.