Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Luukv93
Frequent Visitor

Need help with average measure

Hello,

 

I try to calculate the average of emails I receive per day in Power BI with the following measures, but the average (gemiddeld) is wrong.

 

Aantal emails = DISTINCTCOUNT(Mail[MailId])
Gemiddeld aantal e-mails per dag = 
AVERAGEX( VALUES( Datum[Date]); [Aantal emails] )

As you can see I received a total of 722 emails in 96 days so average should be 7,52 but gives me 9,28 instead.

Would really appreciate any help thank you

 

 

 

 

 

tempsnip.png

 

1 ACCEPTED SOLUTION
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @Luukv93,

 

Please review the difference of results in two table visuals in below example.

Measures are:

Aantal day = DISTINCTCOUNT(Mail[Date])

Aantal emails = SUMX(DISTINCT(Mail[Date]),CALCULATE(DISTINCTCOUNT(Mail[MailId])))
Gemiddeld aantal e-mails per dag = AVERAGEX( VALUES(Mail[Date]), [Aantal emails] )

Aantal emails2 = DISTINCTCOUNT(Mail[MailId])
Gemiddeld aantal e-mails per dag2 = DISTINCTCOUNT(Mail[MailId])/DISTINCTCOUNT(Mail[Date])

1.PNG

In the top right table visual, the result in total row of [Aantal emails] is calculated by sum up distinctcount values of each day (3+4+2). Then, the result of Gemiddeld aantal e-mails per dag equals 9/3=3.

In the bottom right table visual, the result in total row of [Aantal emails2] is calculated by distinctcount mailid across the whole dataset. As you can see, the left table visual shows there are 4 different Email Ids. So, the result of Gemiddeld aantal e-mails per dag2 equals 4/3=1.33.

 

In your scenario, if you want to get the result of 7.52, you should use this measure:

Gemiddeld aantal e-mails per dag2 = 
DISTINCTCOUNT(Mail[MailId])/DISTINCTCOUNT(Mail[Date])

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @Luukv93,

 

Please review the difference of results in two table visuals in below example.

Measures are:

Aantal day = DISTINCTCOUNT(Mail[Date])

Aantal emails = SUMX(DISTINCT(Mail[Date]),CALCULATE(DISTINCTCOUNT(Mail[MailId])))
Gemiddeld aantal e-mails per dag = AVERAGEX( VALUES(Mail[Date]), [Aantal emails] )

Aantal emails2 = DISTINCTCOUNT(Mail[MailId])
Gemiddeld aantal e-mails per dag2 = DISTINCTCOUNT(Mail[MailId])/DISTINCTCOUNT(Mail[Date])

1.PNG

In the top right table visual, the result in total row of [Aantal emails] is calculated by sum up distinctcount values of each day (3+4+2). Then, the result of Gemiddeld aantal e-mails per dag equals 9/3=3.

In the bottom right table visual, the result in total row of [Aantal emails2] is calculated by distinctcount mailid across the whole dataset. As you can see, the left table visual shows there are 4 different Email Ids. So, the result of Gemiddeld aantal e-mails per dag2 equals 4/3=1.33.

 

In your scenario, if you want to get the result of 7.52, you should use this measure:

Gemiddeld aantal e-mails per dag2 = 
DISTINCTCOUNT(Mail[MailId])/DISTINCTCOUNT(Mail[Date])

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi @v-yulgu-msft,

 

Thanks for the explanation, it makes sense.

 

Just one question when would you advise to use VALUES ( ) over DISTINCT () and vice versa?

Hi @Luukv93,

 

Here is blog for your reference: Difference between DISTINCT and VALUES in DAX

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors