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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

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

MayPowerBICarousel

Fabric Monthly Update - May 2024

Check out the May 2024 Fabric update to learn about new features.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.