Forum Discussion
floppysock
3 years agoFrequent Visitor
Average Issues
Hi all - I'm struggling to figure out how to get the averages working correctly for a data set that already has averages in. The data set - e.g. row 1 is saying Agent 1 completed 3 tasks and the...
- 3 years ago
hi floppysock
try to plot a table visual wit the Team Name column and a measure like:
Avg = DIVIDE( SUMX( TableName, TableName[Volume Completed]*TableName[AVG Hours to Complete] ), SUM(TableName[Volume Completed]) )it worked like:
FreemanZ
3 years agoSuper User
hi floppysock
try to plot a table visual wit the Team Name column and a measure like:
Avg =
DIVIDE(
SUMX(
TableName,
TableName[Volume Completed]*TableName[AVG Hours to Complete]
),
SUM(TableName[Volume Completed])
)
it worked like:
floppysock
3 years agoFrequent Visitor
This is exactly what I needed - thanks so much.
I think I need to go read up and explore the SUMX etc functions as the key lies there.