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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
Grofu
Frequent Visitor

Measure for price per order

Hello,

 

Is there any measure that i can use to calculate the order total when it contains multiple products.

I know that i can use visuals which will do this automatically but i need also a measure to be able to filter orders based on ammounts.

 

What i need is a measure that will return the total of an order ( AAA= 30 and BBB = 200) so i can then be able to filter these orders based on a given value (more than 50, more than 100, between 10 and 100 etc for which i will use a slicer).

OrderProductPrice
AAAnnn10
AAAmmm20
BBBxxx100
BBByyy100
1 ACCEPTED SOLUTION
kitgo2
Advocate I
Advocate I

this should work:

 Measure

#Price = CALCULATE(sum(Sheet1[Price]),ALLEXCEPT(Sheet1,Sheet1[Order]))
Column - which you can use as a slicer
*Price = [#Price]

 

View solution in original post

3 REPLIES 3
Grofu
Frequent Visitor

Thank you for your help, it worked as expected for given example.

However, looking to the data, there are more scenarios that i did not forsee when using the column for slicer (which for me is much more useful).

Is there a way to have a column to return me the Expected result? I do not have other fields to differentiate. 

OrderProductPriceResultExpected result
AAAmmm104040
AAAmmm1040(blank)
AAAnnn2040(blank)
BBBxxx100200200
BBByyy100200(blank)

See if this will work for you: 

*Display = IF(Sheet1[Product] = Calculate(
minx (sheet1,[Product]),
FILTER (
ALL ( Sheet1 ),
Sheet1[Order] = EARLIER ( Sheet1[Order] )
&& Sheet1[Price] = CALCULATE(min ( Sheet1[Price] ),ALLEXCEPT(Sheet1,Sheet1[Order]))
 
)
 
 
 
), Sheet1[*Price], Blank())
kitgo2
Advocate I
Advocate I

this should work:

 Measure

#Price = CALCULATE(sum(Sheet1[Price]),ALLEXCEPT(Sheet1,Sheet1[Order]))
Column - which you can use as a slicer
*Price = [#Price]

 

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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.