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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
Anonymous
Not applicable

Multiply Price by sales depending on the date

Hello! I have a table similar to this one below: 

pablopsoto_0-1637775804840.png

 

And I have another table with the sales and the date they ocurred related by product. I would like to multiply the number of sales by the price depending on if they happened before or after a date shown on the table above.

 

Currently I multiply the sales by the price like this:

 

SumX(Sales, Sales[Quantity]*Related(Product[Price])

 

Do you have a suggestion on how could I achieve this?

Thanks a lot!!

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi,

I am not sure if I understood your question correctly, but please check the below picture and the attached pbix file.

 

Picture1.png

 

Sales Total: =
VAR currentdate =
MAX ( Dates[Date] )
VAR salestotal =
SUMX (
Sales,
Sales[Quantity]
* IF (
currentdate <= RELATED ( 'Product'[Date] ),
RELATED ( 'Product'[PriceBefore] ),
RELATED ( 'Product'[PriceAfter] )
)
)
RETURN
salestotal
 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

View solution in original post

3 REPLIES 3
Jihwan_Kim
Super User
Super User

Hi,

I am not sure if I understood your question correctly, but please check the below picture and the attached pbix file.

 

Picture1.png

 

Sales Total: =
VAR currentdate =
MAX ( Dates[Date] )
VAR salestotal =
SUMX (
Sales,
Sales[Quantity]
* IF (
currentdate <= RELATED ( 'Product'[Date] ),
RELATED ( 'Product'[PriceBefore] ),
RELATED ( 'Product'[PriceAfter] )
)
)
RETURN
salestotal
 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Anonymous
Not applicable

Okay! I found the solution thanks to your help!

pablopsoto_1-1637828972554.png

I just needed to change the current date to sales date. I would like to still accept your answer as a solution.

Thank you very much!

Anonymous
Not applicable

Hello! Thank you so much for taking your time to answer me. Your solution helped me a lot but it is still not exactly what I was looking for. 

pablopsoto_0-1637828071418.png

I created some tables on your pbix file. I filtered product A in all tables for simplicity. If you see the tables above, product A has a Sales quantity of 317 before the product date and 219 after. 

 

What I want is Sales Total: to calculate (317*10) + (219*15) = 6455. But currently is calculating all 536*15 = 8030. I hope you understand my explanation.

 

Thank you very much for your help! Pablo

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

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.