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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

Creating table with unique values and min/max timestamps

Hi all,

 

I am strugling to create calculation based on unique values from a table.

I need to calculate average duration using only unique ID taking earliest and oldest timestamps. 

One ID should only have one create and close in table to have correct calculation. Please see table 3 for what i need:

 

WHat i started with:

table 1

IDClosedCreatedDuration
105/09/201914/09/20199
207/09/201915/09/20198
310/09/201913/09/20193
108/09/201915/09/20197
208/09/201914/09/20196
105/09/201913/09/20198
402/09/201914/09/201912

 

Then i managed to create:

table 3

IDClosedCreatedDurationEarliestOldestDuration per case
105/09/201914/09/2019905/09/201915/09/201910
207/09/201915/09/2019807/09/201915/09/20198
310/09/201913/09/2019310/09/201913/09/20193
108/09/201915/09/2019705/09/201915/09/201910
208/09/201914/09/2019607/09/201915/09/20198
105/09/201913/09/2019805/09/201915/09/201910
402/09/201914/09/20191202/09/201913/09/201911

 

And then i already cteated new table with unique values (using VALUES()). Not sure if this is the best way, but the one i have so far. What i need in the end is:

table 3

 

IDEarliestOldestDuration per case
105/09/201915/09/201910
207/09/201915/09/20198
310/09/201913/09/20193
402/09/201913/09/201911

 

So my Average is 8 insteaed 8.7

 

Please help with methodology

Regards

Filarap

1 ACCEPTED SOLUTION
v-xuding-msft
Community Support
Community Support

Hi @Anonymous ,

By my test, the oldest date of ID 4 should be 14/09/2019. Are you sure that the output is right (13/09/2019 )? If the date is 14/09/2019, the average value is 8.7. The following is my formulas. And I attached my sample that you can reference.

 

Calculated column:
Earliest = CALCULATE(MIN('Table'[Closed]),ALLEXCEPT('Table','Table'[ID])) Oldest = CALCULATE(MAX('Table'[Created]),ALLEXCEPT('Table','Table'[ID])) Duration per case = DATEDIFF('Table'[Earliest],'Table'[Oldest],DAY)
AVG = AVERAGE('Table'[Duration per case])
Measure:
Average = AVERAGE('Table'[Duration per case])

4.PNG

Best Regards,

Xue Ding

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

 

 

Best Regards,
Xue Ding
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

2 REPLIES 2
v-xuding-msft
Community Support
Community Support

Hi @Anonymous ,

By my test, the oldest date of ID 4 should be 14/09/2019. Are you sure that the output is right (13/09/2019 )? If the date is 14/09/2019, the average value is 8.7. The following is my formulas. And I attached my sample that you can reference.

 

Calculated column:
Earliest = CALCULATE(MIN('Table'[Closed]),ALLEXCEPT('Table','Table'[ID])) Oldest = CALCULATE(MAX('Table'[Created]),ALLEXCEPT('Table','Table'[ID])) Duration per case = DATEDIFF('Table'[Earliest],'Table'[Oldest],DAY)
AVG = AVERAGE('Table'[Duration per case])
Measure:
Average = AVERAGE('Table'[Duration per case])

4.PNG

Best Regards,

Xue Ding

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

 

 

Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Hi Xue Ding,

 

You are correct, my error here.

 

Thank you for help, i managed to do it with your solution.

 

Regards

Filarap

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

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

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 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.