Forum Discussion

nbff's avatar
nbff
New Member
5 years ago
Solved

Returning max value from a table

Hi Everyone, seek some help. i have a table of figures such as below. i intend to have a measure which would identify the tank with the highest receipt quantity. Thereafter i will use 'Card' to always display the tank with the highest value.

  • Hi nbff ,

     

    You can also try this to show Tank and Receipts together in a card:

     

    1. If [Receipts (L)] is a Measure.

    Tank with the highest value =
    MAXX (
        TOPN ( 1, ALLSELECTED ( 'YourTable'[Tank] ), [Receipts (L)], DESC ),
        [Tank] & " - " & [Receipts (L)]
    )
    

     

    2. If [Receipts (L)] is a Column.

    Tank with the highest value =
    MAXX (
        TOPN (
            1,
            SUMMARIZE (
                'YourTable',
                'YourTable'[Tank],
                "Receipts_", SUM ( 'YourTable'[Receipts (L)] )
            ),
            [Receipts_], DESC
        ),
        [Tank] & "-" & [Receipts_]
    )
    

     

     

     

    Best Regards,

    Icey

     

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

2 Replies

  • Icey's avatar
    Icey
    Community Support

    Hi nbff ,

     

    You can also try this to show Tank and Receipts together in a card:

     

    1. If [Receipts (L)] is a Measure.

    Tank with the highest value =
    MAXX (
        TOPN ( 1, ALLSELECTED ( 'YourTable'[Tank] ), [Receipts (L)], DESC ),
        [Tank] & " - " & [Receipts (L)]
    )
    

     

    2. If [Receipts (L)] is a Column.

    Tank with the highest value =
    MAXX (
        TOPN (
            1,
            SUMMARIZE (
                'YourTable',
                'YourTable'[Tank],
                "Receipts_", SUM ( 'YourTable'[Receipts (L)] )
            ),
            [Receipts_], DESC
        ),
        [Tank] & "-" & [Receipts_]
    )
    

     

     

     

    Best Regards,

    Icey

     

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