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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
JimmyHussein
New Member

Count then multiply

I have 2 tables 1:many 

The sales table which only has the units sold...  so each row counts as a sale...  the sales table doesn't have a quantity column 

 

My product table has the product key which exist in the sales table as well

 

I want to count the number of units per product key and then multiply it by the price of each product key from my product table 

 

Doing the total sales by unit must be done with count as I can't use sum

 

I can get the count but am struggling to get the revenue with the multiply 

1 ACCEPTED SOLUTION
MattAllington
Community Champion
Community Champion

Try this

 

SUMX(productsTable,productsTable[price] * CALCULATE(COUNTROWS(SalesTable)))



* Matt is an 8 times Microsoft MVP (Power BI) and author of the Power BI Book Supercharge Power BI.
I will not give you bad advice, even if you unknowingly ask for it.

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@JimmyHussein , Try like

sumx(summarize(product, "_1",calcuate(sum(sales[quantity])) , "_2",calcuate(sum(product[price]))), [_1]*[_2])

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
wdx223_Daniel
Super User
Super User

=sumx(producttable,producttable[price]*calcuate(sum(salestable[quantity])))

MattAllington
Community Champion
Community Champion

Try this

 

SUMX(productsTable,productsTable[price] * CALCULATE(COUNTROWS(SalesTable)))



* Matt is an 8 times Microsoft MVP (Power BI) and author of the Power BI Book Supercharge Power BI.
I will not give you bad advice, even if you unknowingly ask for it.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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

Top Solution Authors