Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
{ FIXED [Item Description] :MIN({ Fixed [Item Description] ,[Vendor],[Purchase Order]:SUM([Unit Price])})}
replicate this in power bi.
Solved! Go to Solution.
Try the below logic for DAX:
MinUnitPricePerItemDescription =
MINX(
SUMMARIZE(
TableName,
TableName[Item Description],
TableName[Vendor],
TableName[Purchase Order],
"SumUnitPrice", SUM(TableName[Unit Price])
),
[SumUnitPrice]
)
Replace TableName with the actual table where the columns reside.
Try the below logic for DAX:
MinUnitPricePerItemDescription =
MINX(
SUMMARIZE(
TableName,
TableName[Item Description],
TableName[Vendor],
TableName[Purchase Order],
"SumUnitPrice", SUM(TableName[Unit Price])
),
[SumUnitPrice]
)
Replace TableName with the actual table where the columns reside.
could you pls provide some sample data and expected output?
Proud to be a Super User!