Forum Discussion

Blazej_13's avatar
Blazej_13
New Member
1 year ago
Solved

DAX Calculation

Hello,   I am a newbie in Power BI and want to get maxx for specific material in filtered month: formula: MAXX (ALLSELECTED (DIM_Date'[DateID]),[Measure]) results: Table is filtered...
  • pankajnamekar25's avatar
    1 year ago

    Hello Blazej_13 

     

    try this measure

     

    Max Measure PerMaterial =

    CALCULATE(

        MAXX(

            VALUES(DIM_Date[DateID]),

            [Measure]

        ),

        ALLEXCEPT(FactTable, FactTable[MaterialID])

    )

    Thanks,
     Pankaj Namekar | LinkedIn

    If this solution helps, please accept it and give a kudos (Like), it would be greatly appreciated.