Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

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.

 

tabela.jpg

 

 

1 ACCEPTED SOLUTION
v-jiascu-msft
Employee
Employee

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 )
)

Column with max value in all Rows.jpg

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Best Regards!

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

5 REPLIES 5
v-jiascu-msft
Employee
Employee

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 )
)

Column with max value in all Rows.jpg

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Best Regards!

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

 

Hi,

 

I have another problem:

if i add another column "Nuts", Your measure23 don´t work for Nuts Context.

Can you help me

 

Best regardstabela.jpg

 

 

 

 

Hi @Anonymous,

 

You can add another ALL() like this:

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

Best Regards!

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Thanks,

 

But´s now the problem is that, when i want to calculate the MAX-TOTAL...tabela.jpg

 

 

 

Zubair_Muhammad
Community Champion
Community Champion

Hi @Anonymous

 

As a calculated column, you can use

Top1=MAX(TableName[Sales])


As a measure, you can use

 

Top1=Calculate(MAX(TableName[Sales]),All(TableName))

Regards
Zubair

Please try my custom visuals

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.