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
bhmiller89
Helper V
Helper V

DateDiff Between Records by Person

I have a  Date/Time for each action a person takes, but there are multiple people each with their own actions. How would I find the datediff between each record by person/date? Columns: 


Date/Time | ActionType | AgentID (person) 

1 ACCEPTED SOLUTION

Hi @bhmiller89 ,

 

I created an sample as your requested, column date/time and clientID:

You can get the datediff using below measure: (you can change the datediff function as Second/Hour/Minute)

Measure = var a = CALCULATE(MIN([DateTime]),ALLEXCEPT('Table (2)','Table (2)'[ClientID]))
var b = CALCULATE(MAX([DateTime]),ALLEXCEPT('Table (2)','Table (2)'[ClientID]))
Return
DATEDIFF(a,b,DAY)

008.PNG

 

Community Support Team _ Dina Ye
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

4 REPLIES 4
Anonymous
Not applicable

Hi!

 

Could you post two or three rows in your columns (with fake data) to clarify to problem a bit more? Not sure I quite understand your problem.

 

 

Capture.JPG

Hi @bhmiller89 ,

 

I created an sample as your requested, column date/time and clientID:

You can get the datediff using below measure: (you can change the datediff function as Second/Hour/Minute)

Measure = var a = CALCULATE(MIN([DateTime]),ALLEXCEPT('Table (2)','Table (2)'[ClientID]))
var b = CALCULATE(MAX([DateTime]),ALLEXCEPT('Table (2)','Table (2)'[ClientID]))
Return
DATEDIFF(a,b,DAY)

008.PNG

 

Community Support Team _ Dina Ye
If this post helps, then please consider Accept it as the solution to help the other members find it more
quickly.

Hi @bhmiller89 ,

 

Please correct me if I go wrong.

you'd like to calculate the datediff by same AgentID but different action, that it comparing the adjacent rows in date column. right?

It's preferred to share us your dummy pbix, that would be easier for us to provide the valuable advice.

Community Support Team _ Dina Ye
If this post helps, then please consider Accept it as the solution to help the other members find it more
quickly.

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.