Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
8 years ago
Solved

Column with max value in all Rows

I need a dax function that populates all Rows of column Top1 with the Max Value of sales. looking at the picture, i want 1423 in all rows.      
  • v-jiascu-msft's avatar
    8 years ago

    Hi Anonymous,

     

    I guess the [sales] is a measure. Maybe you can try it like this:

    Measure 23 =
    CALCULATE (
        MAXX (
            SUMMARIZE (
                Sales,
                Calender[Date].[Year],
                Calender[Date].[Month],
                "saless", SUM ( Sales[Quantity] )
            ),
            [saless]
        ),
        ALL ( Calender )
    )

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

    Best Regards!

    Dale