Forum Discussion
JimJim
8 years agoResponsive Resident
Average
Hello, I am trying (and failing) to work out the average execution time of a report. I have a fact table called ReportExecution in the following (simplified) format: Date ReportName ...
- 8 years ago
So, maybe create a new column in your fact table:
TotalTime = [ReportCount] * [AverageTime]
Then create a measure like:
MyAverage = DIVIDE(SUM([TotalTime]),SUM([ReportCount]))
Greg_Deckler
8 years agoCommunity Champion
So, maybe create a new column in your fact table:
TotalTime = [ReportCount] * [AverageTime]
Then create a measure like:
MyAverage = DIVIDE(SUM([TotalTime]),SUM([ReportCount]))
- JimJim8 years agoResponsive Resident
Excellent, thank you.