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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

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
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

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

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.