Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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.
Regards
Power Bi Learner
Solved! Go to Solution.
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()))
Best Regards
maggie
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()))
Best Regards
maggie
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.