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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
User38690
Regular Visitor

How to calculate total prices from different product in different table

Hello, 

I have two tables Prices and Sales. In the first table I have all product list with the prices in the other one a have the list of the sales with the columns date, products, vendor, shop, region, quantity. What I want to do is to calculate all amount of the sales. I try to do the matrix when in the columns I put month, region, shop, product and vendor. I create the measure: TOTAL_SALES = SUM(sales[quantity]) * SUM(product[price]), but I get very large number that is not true. When I expend matrix until products I got real numbers. So my guess is that it first adds up all the prices and products quantity and the do multiplication. So how can I solve this problem?

User38690_0-1712136004138.png

(The first column is quantity the other one total price)

1 ACCEPTED SOLUTION
vs_7
Continued Contributor
Continued Contributor

Hi @User38690 

try below dax measure for calculating the total prices



TOTAL_SALES = 
SUMX(
    Sales,
    Sales[Quantity] * RELATED(Products[Price])
)

 

View solution in original post

1 REPLY 1
vs_7
Continued Contributor
Continued Contributor

Hi @User38690 

try below dax measure for calculating the total prices



TOTAL_SALES = 
SUMX(
    Sales,
    Sales[Quantity] * RELATED(Products[Price])
)

 

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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