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
GVSmits
Regular Visitor

Choose a value between multiple rows based on a quantity

Hello,

 

Here is my problem : I have a database "Table Price" with multiple rows for a same product which each row having a different value in the column "Price/unit" because if the customer order more, he pay less by unit. Thus each row also has different value in its columns "Quantity (low)" and "Quantity (high)".

Has showned in the table below :

 

ItemIDProductQuantity (low)Quantity (high)Price/unit
1Product 11510
1Product 16108
1Product 111207
1Product 121306
2Product 21220
2Product 23418
2Product 25616

 

In another table "Order" I have an order with for example : 18 product 1, the value 18 is present in a column "Order.Quantity".  Theses two tables have a relation via "ItemID". 

I would like to create a measure to calculate the final price : for example in our case : 18 * 7

But I can't succeed to select the 7 as value. I was thinking of using LOOKUPVALUE but I would have to say that the "Order.Quantity" > "Quantity (low)" and "Order.Quantity" < "Quantity (high)"; and LOOKUPVALUE doesn't autorize < or >.

 

Total Price =
LOOKUPVALUE('Table Price'[Price/Unit],'Table Price'[ItemID],'Table Order'[ItemID],'Table Price'[Quantity (low)], <='Table Order'[Order.Quantity], 'Table Price'[Quantity (high)], >='Table Order'[Order.Quantity])

 

Thanks in advance for your help and time.

1 ACCEPTED SOLUTION
v-rzhou-msft
Community Support
Community Support

Hi @GVSmits ,

 

I suggest you to create a measure as below.

Total Price = 
CALCULATE (
    SUM ( 'Table Price'[Price/unit] ),
    FILTER (
        'Table Price',
        'Table Price'[Quantity (low)] <= MAX ( 'Table Order'[Order.Quantity] )
            && 'Table Price'[Quantity (high)] >= MAX ( 'Table Order'[Order.Quantity] )
    )
) * CALCULATE(SUM('Table Order'[Order.Quantity]))

Result is as below.

vrzhoumsft_0-1686642771280.png

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-rzhou-msft
Community Support
Community Support

Hi @GVSmits ,

 

I suggest you to create a measure as below.

Total Price = 
CALCULATE (
    SUM ( 'Table Price'[Price/unit] ),
    FILTER (
        'Table Price',
        'Table Price'[Quantity (low)] <= MAX ( 'Table Order'[Order.Quantity] )
            && 'Table Price'[Quantity (high)] >= MAX ( 'Table Order'[Order.Quantity] )
    )
) * CALCULATE(SUM('Table Order'[Order.Quantity]))

Result is as below.

vrzhoumsft_0-1686642771280.png

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

jgeddes
Super User
Super User

You can create a calculated column in the order table with...

orderPriceColumn =
var _vTable =
//filter the Price Table to the current itemID and Quantity (low) values less than or equal to current order quantity
FILTER(
    'Table',
    'Table'[ItemID] = 'Table (2)'[ItemID] && 'Table'[Quantity (low)] <= 'Table (2)'[orderQty]
)
Return
//return the minimum price value of the filtered Price Table
MINX(
    _vTable,
    [Price/unit]
)
 
Hope this helps.



Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





Thank you for your reply.

It solves my problem to isolate the correct price but I have an error because in the table (2) there is multiple times the ItemID = 1 for example, and Power BI ask for a single value. Would you have an idea to solve this issue please?

 

The error message : "A single value for column 'ItemId' in table 'ProductionVoucherItems' cannot be determined. This can happen when a measure formula refers to a column that contains many values without specifying an aggregation such as min, max, count, or sum to get a single result."

 

 'ProductionVoucherItems' = Table (2) in your formula.

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.