Hi
How to calculate average of a column in rdlc
I have a column name Average Drop
Average Drop
2
3
5
===============
//expected average is 3,3%
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Nithya MathanPosted Dec 5, 2017, 8:06 PM
=sum(Fields!Time.Value)/CountDistinct(Fields!groupingField.Value)where isFields!Time.Valueyour field with time values and isFields!groupingField.Valueyour field that you use for row grouping.