Forum Discussion

Syndicate_Admin's avatar
Syndicate_Admin
Administrator
1 year ago
Solved

Column with the maximum value

Hello good afternoon community, for your help with the following query: I have the following table grouped together: The Maximum Value of the quantity field is searched (In this case it ...
  • Anonymous's avatar
    Anonymous
    1 year ago

    Hi Chentefx ,

     

    Maybe there're some filters that cauesd the wrong result of your measure.

    You can try this measure:

    HTX_Maximo =
    MAXX (
        SUMMARIZE (
            ALL ( 'DayWithMaxTransactions' );
            'DayWithMaxTransactions'[HProcess].[Año];
            'DayWithMaxTransactions'[HProcess].[Mes];
            'DayWithMaxTransactions'[HProcess].[Día];
            DayWithMaxTransactions[TransactionCount]
        );
        'DayWithMaxTransactions'[TransactionCount]
    )
    

    The ALL function can ignore any filters applied.

     

    Best Regards,

    Stephen Tao

     

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