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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Responsive Resident
Responsive Resident

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
Responsive Resident
Responsive Resident

Hi @User38690 

try below dax measure for calculating the total prices



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

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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