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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
ChrisPBI
Advocate III
Advocate III

Data Model Value Average

Hello,

 

my data model says that a product can have emissions in four life cycle stages.

 

Example for product XY with A to D as the life cycle stages as table values:

 

Product    Life Cycle Stage   Value

    XY                   A                    10

    XY                   B                    20

    XY                   C                     5

    XY                   D                   15

 

Therefore each product has four rows in the relationship table.

 

When I want to calculate the Average of all emissions (values) the answer in this example

should be 50 since there is only one product. But it is calculated 50 / 4 =12,5.

 

Do I have to change the underlying tables or why is the calulation wrong?

 

Thanks and Regards,

Chris

1 ACCEPTED SOLUTION
KGrice
Memorable Member
Memorable Member

Hi @ChrisPBI. If you use =AVERAGE(TableName[Value]), you'll get 12.5. To get the sum of the value column divided by the number of products, you could use this measure:

 

Measure = SUM(TableName[Value]) / DISTINCTCOUNT(TableName[Product])

 

For your sample, that should evaluate to 50 / 1 = 50.

View solution in original post

1 REPLY 1
KGrice
Memorable Member
Memorable Member

Hi @ChrisPBI. If you use =AVERAGE(TableName[Value]), you'll get 12.5. To get the sum of the value column divided by the number of products, you could use this measure:

 

Measure = SUM(TableName[Value]) / DISTINCTCOUNT(TableName[Product])

 

For your sample, that should evaluate to 50 / 1 = 50.

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors