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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Syndicate_Admin
Administrator
Administrator

Count Entry and exit times

I have a table with the fields: Name Date Type Time Index and Times

Tabla.jpg

The index column has this formula: =CONTAR.SI($A$2:A2,A2)
The times column has this formula: =IF(A3=A2,D3-D2,"")

Those 2 columns are additional to my table

What I want is to load my original table in power pivot and from there add the 2 columns and with dax formulas

Take out the index and get the difference between times.

To later be able to verify how long a user was inside and how long he was outside.

I need to know for each day, how long the user was inside and how long outside, for that I need the time difference.

In excel it is easy to achieve since the formula is manipulated, but I have not been able to do it in dax.

Could someone help me please?

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @MaritoDominguez ,

 

You could create two calculated columns as follows.

Index = COUNTROWS(FILTER('Table',[Hora]<=EARLIER('Table'[Hora])&&[Nombre]=EARLIER('Table'[Nombre])))

vstephenmsft_0-1681377091771.png

Diff = var _pre=CALCULATE(MAX('Table'[Hora]),FILTER('Table',[Index]<EARLIER('Table'[Index])&&[Nombre]=EARLIER('Table'[Nombre])))
return IF(ISBLANK(_pre),BLANK(),[Hora]-_pre)

vstephenmsft_1-1681377100371.png

 

You can download the attachment for more details.

 

                                                                                                                                                         

Best Regards,

Stephen Tao

 

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

1 REPLY 1
Anonymous
Not applicable

Hi @MaritoDominguez ,

 

You could create two calculated columns as follows.

Index = COUNTROWS(FILTER('Table',[Hora]<=EARLIER('Table'[Hora])&&[Nombre]=EARLIER('Table'[Nombre])))

vstephenmsft_0-1681377091771.png

Diff = var _pre=CALCULATE(MAX('Table'[Hora]),FILTER('Table',[Index]<EARLIER('Table'[Index])&&[Nombre]=EARLIER('Table'[Nombre])))
return IF(ISBLANK(_pre),BLANK(),[Hora]-_pre)

vstephenmsft_1-1681377100371.png

 

You can download the attachment for more details.

 

                                                                                                                                                         

Best Regards,

Stephen Tao

 

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

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors