Forum Discussion
kastriot
7 years agoFrequent Visitor
Average per quarter
Hello, I am trying to get the average of the count of [Staff ID] per quarter and I was hoping someone can help me. Please check the formulas on the right side to maybe have a better understandin...
themistoklis
7 years agoCommunity Champion
You can use the following formula:
Measure = CALCULATE (
COUNT ( 'Table'[Staff ID] ),
FILTER (
All('Table'),
'Table'[Quarter] <= MAX ( 'Table'[Quarter] )
)
)
/ MAX('Table'[Month No])
Workspace on this link.
kastriot
7 years agoFrequent Visitor
That worked great. Thank you