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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Learnpbi
Regular Visitor

Calculate the difference in created date and resolved date

hi Team

 

I have two columns in the sample set provided below, both are these date columns with date and time stamp.

 

What do I want to calculate

 

1) Calculate the average time it took John or Tim to resolve all queries (please note assignee column is not complete in real data set there will always be value in this column).

 

2) In real data set resolved column can be blank, and when it is blank then it average value calculated above should not include this in the calculation.

 

 

Power Bi query.png

 

 

Regards

 

Power Bi Learner

 

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

Hi @Learnpbi

Create calculated columns

difference = DATEDIFF([Created],[Resloved],MINUTE)

average = AVERAGEX(FILTER(ALL(Sheet5),AND(OR([Assignee]="John",[Assignee]="Tim"),[Resloved]<>BLANK())),[difference])

Or 

average2 = CALCULATE(AVERAGE(Sheet5[difference]),FILTER(ALL(Sheet5),[Assignee]="John"||[Assignee]="Tim"&&[Resloved]<>BLANK()))

5.png

 

Best Regards

maggie

View solution in original post

1 REPLY 1
v-juanli-msft
Community Support
Community Support

Hi @Learnpbi

Create calculated columns

difference = DATEDIFF([Created],[Resloved],MINUTE)

average = AVERAGEX(FILTER(ALL(Sheet5),AND(OR([Assignee]="John",[Assignee]="Tim"),[Resloved]<>BLANK())),[difference])

Or 

average2 = CALCULATE(AVERAGE(Sheet5[difference]),FILTER(ALL(Sheet5),[Assignee]="John"||[Assignee]="Tim"&&[Resloved]<>BLANK()))

5.png

 

Best Regards

maggie

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.