Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
1 year ago
Solved

Dax logic

{ FIXED [Item Description] :MIN({ Fixed [Item Description] ,[Vendor],[Purchase Order]:SUM([Unit Price])})} replicate this in power bi.
  • ChiragGarg2512's avatar
    1 year ago

    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.