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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Lightice83
Helper I
Helper I

Reference fact/data table from Dimension table

Hi,

 

I'm doing the Mavern Analytics advanced DAX course & there is a example where we create a calculated column in the Fact/Lookup table for Customers to return total revenue (for all customers) from the Sales table Fact/Data table (this is being used as a input to a bigger calculation) into the Dimension/Lookup table

 

The calculation used is SUMX (see below) but would this not calculate the revenue per customer not all customers?  Or is it because there has been no context transition (starting with row context & not used calculate) hence it is just doing the SUMX over every customer?

 

Thanks

 

Mavern Example.PNG

1 ACCEPTED SOLUTION
DataInsights
Super User
Super User

@Lightice83,

 

The SUMX in the example would return the same amount for each customer, because it is iterating the entire fact table without regard to the relationship between Customers and Sales by Store. However, if you add RELATEDTABLE it will filter the fact table per the relationship with Customers:

 

SUMX (
    RELATEDTABLE ( 'Sales by Store' ),
    'Sales by Store'[quantity_sold] * 'Sales by Store'[unit_price]
)

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

1 REPLY 1
DataInsights
Super User
Super User

@Lightice83,

 

The SUMX in the example would return the same amount for each customer, because it is iterating the entire fact table without regard to the relationship between Customers and Sales by Store. However, if you add RELATEDTABLE it will filter the fact table per the relationship with Customers:

 

SUMX (
    RELATEDTABLE ( 'Sales by Store' ),
    'Sales by Store'[quantity_sold] * 'Sales by Store'[unit_price]
)

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.