Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi, wonderful PBI community!
I hope you can help me here. In short, how do I match values to value ranges? In more details:
I have an SKU master table with From Quantities - that indicate quantity ranges - and corresponding pricing tiers. I need to match those against the Sales table that contains Qty Sold, and assign the Price Tier to each sales record. Please see the illustration below. The zeroes are proving especially tricky for me! Thanks a million!
Solved! Go to Solution.
@CSteff , My bad
new column =
var _max = maxx(filter( SKU,SKU[product] = sales[product] && SKU[from Qty]<=sales[Qty Sold]),[from Qty] )
return
maxx(filter( SKU,SKU[product] = sales[product] && SKU[from Qty]=_max]),[price Tire] )
@CSteff , My bad
new column =
var _max = maxx(filter( SKU,SKU[product] = sales[product] && SKU[from Qty]<=sales[Qty Sold]),[from Qty] )
return
maxx(filter( SKU,SKU[product] = sales[product] && SKU[from Qty]=_max]),[price Tire] )
@amitchandak - thanks so much for your help!
In your formula, there is a gap between sales[product] and SKU[from Qty] in both filter expressions. Should I assume it should be &&?
@CSteff , Create a new column in sales like
new column =
var _max = maxx(filter( SKU,SKU[product] = sales[product] SKU[from Qty]<=sales[Qty Sold]),[from Qty] )
return
maxx(filter( SKU,SKU[product] = sales[product] SKU[from Qty]=_max]),[price Tire] )
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 98 | |
| 72 | |
| 50 | |
| 50 | |
| 43 |