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
30rakesh
Regular Visitor

Average calculation on data between two tables

Hi,

 

I have two tables. One is 'Incident' and the second is 'HoldActivity' (and relation between these two tables is 'IncId' as shown below).  I need to display a visual which should show the average of TotalDuration and HoldDuration. When I apply the average, it shows the TotalDuration as 125 (i.e. 100+150/2) and HoldDuration as 50. 

Actually, I need HoldDuration to display as 25. Can you anyone help me in solving this issue.

 

Incident

 

Capture.PNG

HoldActivity  

Capture1.PNG 

 

 

Thanks

Rakesh

1 ACCEPTED SOLUTION
SabineOussi
Skilled Sharer
Skilled Sharer

You need to add something like this

 

DIVIDE(
HoldActivity[HoldDuration],
DISTINCTCOUNT(Incident[IncId])
)

if you are calculating the average of HoldDuration based on the number of incidents in table Incident.

 

 

 

View solution in original post

3 REPLIES 3
SabineOussi
Skilled Sharer
Skilled Sharer

You need to add something like this

 

DIVIDE(
HoldActivity[HoldDuration],
DISTINCTCOUNT(Incident[IncId])
)

if you are calculating the average of HoldDuration based on the number of incidents in table Incident.

 

 

 

Thank you SabineOussi!!

It worked.

SamLester
Employee
Employee

What logic are you using to determine that the value should be 25?

 

Thanks,
Sam Lester (MSFT)

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.