Forum Discussion
30rakesh
10 years agoRegular 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 aver...
- 10 years ago
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.
SabineOussi
10 years agoSkilled 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.
- 30rakesh10 years agoRegular Visitor
Thank you SabineOussi!!
It worked.