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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Anonymous
Not applicable

Use pricetable with price scale to calculate total amount

Hi,

I'm stuck and hope to get some help from the Power BI community...

Let me please paint the picture..:


In Power BI I've created a PriceTable with a PriceScale, something like this:

 

 

BrandMinMaxPPS
Thingy_1_UK12525
Thingy_1_UK265024
Thingy_1_UK517522
Thingy_1_UK76100020
Thingy_1_US12530
Thingy_1_US265028
Thingy_1_US517526
Thingy_1_US7610024
Thingy_1_US101100022
Thingy_1_Rest12520
Thingy_1_Rest265018
Thingy_1_Rest50100015


I'm looking for a way to (preferably in a Matrix visual) calculate the Total Amount based on the total sum of #Sales per Geographic and the corresponding PPS in the PriceTable, something like this:

 

Geographic#SalesTotal Amount Calculation
United Kingdom27648 (27*24)
United States16480 (16*30)
Rest of the World751125 (75*15)

 

Any ideas are welcome...

Thanks a lot in advance...

1 ACCEPTED SOLUTION
parry2k
Super User
Super User

@Anonymous this is what I will do and it will show the total value correctly, add a measure:

 

Total Amount = 
SUMX ( 
    SUMMARIZE ( 
        Sales, 
        Sales[Brand], 
        "@Sales", 
        VAR __sales = CALCULATE ( SUM ( Sales[#Sales] ) ) //get the brand sales
        RETURN
        __sales * //multiply the brand sales with PPS base on the sales
        CALCULATE( 
            MAX ( PriceRanges[PPS] ), 
            TREATAS ( VALUES ( Sales[Brand] ), PriceRanges[Brand] ), 
            __sales >= PriceRanges[Min], 
            __sales <= PriceRanges[Max]
        ) //this calculate logice gets the PPS based on the sale
    ), 
    [@Sales] //sum sale after the calculation
)

 

parry2k_0-1639194652938.png

 

 

Follow us on LinkedIn

 

Learn about conditional formatting at Microsoft Reactor

My latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

 

Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

View solution in original post

3 REPLIES 3
Ashish_Mathur
Super User
Super User

Hi,

Share the link from where i can download your PBI file.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
parry2k
Super User
Super User

@Anonymous this is what I will do and it will show the total value correctly, add a measure:

 

Total Amount = 
SUMX ( 
    SUMMARIZE ( 
        Sales, 
        Sales[Brand], 
        "@Sales", 
        VAR __sales = CALCULATE ( SUM ( Sales[#Sales] ) ) //get the brand sales
        RETURN
        __sales * //multiply the brand sales with PPS base on the sales
        CALCULATE( 
            MAX ( PriceRanges[PPS] ), 
            TREATAS ( VALUES ( Sales[Brand] ), PriceRanges[Brand] ), 
            __sales >= PriceRanges[Min], 
            __sales <= PriceRanges[Max]
        ) //this calculate logice gets the PPS based on the sale
    ), 
    [@Sales] //sum sale after the calculation
)

 

parry2k_0-1639194652938.png

 

 

Follow us on LinkedIn

 

Learn about conditional formatting at Microsoft Reactor

My latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

 

Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

lbendlin
Super User
Super User

Attached is a sample implementation.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.