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
tarunPoweBI
Regular Visitor

How to perform filter, grouping in one query and then getting MAX value from all the rows

I am new to PowerBI and resuing a graph used by the team. The below table is the screenshot of the table which we get after clicking 'Show as a table', the option we get on top right of a graph in PowerBI.

I am stuck in a very simple thing. I just want a MAX value and a MIN Value from the three columns marked in below image (Actuas 2022, Actuals 2022, Actuals, 2023). 

I will use the two values (Max and Min) to show line on the graph.

Please help me with the DAX query

TablesSS.png

1 ACCEPTED SOLUTION
v-shex-msft
Community Support
Community Support

HI @tarunPoweBI,

It seems like you want to extract the min/max value from aggregate values. For this senecio, I think you can create variables to summary these field values and you can use min/max functions to compare these aggregated fields values.

formual =
VAR _act2021 =
    CALCULATE (
        SUM ( Table[Actuals 2021] ),
        'Table',
        VALUES ( 'Table'[ReportingDate] )
    )
VAR _act2022 =
    CALCULATE (
        SUM ( Table[Actuals 2022] ),
        'Table',
        VALUES ( 'Table'[ReportingDate] )
    )
VAR _act2023 =
    CALCULATE (
        SUM ( Table[Actuals 2023] ),
        'Table',
        VALUES ( 'Table'[ReportingDate] )
    )
RETURN
    MAX ( MAX ( _act2021, _act2022 ), _act2023 )

formual2 =
VAR _act2021 =
    CALCULATE (
        SUM ( Table[Actuals 2021] ),
        'Table',
        VALUES ( 'Table'[ReportingDate] )
    )
VAR _act2022 =
    CALCULATE (
        SUM ( Table[Actuals 2022] ),
        'Table',
        VALUES ( 'Table'[ReportingDate] )
    )
VAR _act2023 =
    CALCULATE (
        SUM ( Table[Actuals 2023] ),
        'Table',
        VALUES ( 'Table'[ReportingDate] )
    )
RETURN
    MIN ( MIN ( _act2021, _act2022 ), _act2023 )

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

1 REPLY 1
v-shex-msft
Community Support
Community Support

HI @tarunPoweBI,

It seems like you want to extract the min/max value from aggregate values. For this senecio, I think you can create variables to summary these field values and you can use min/max functions to compare these aggregated fields values.

formual =
VAR _act2021 =
    CALCULATE (
        SUM ( Table[Actuals 2021] ),
        'Table',
        VALUES ( 'Table'[ReportingDate] )
    )
VAR _act2022 =
    CALCULATE (
        SUM ( Table[Actuals 2022] ),
        'Table',
        VALUES ( 'Table'[ReportingDate] )
    )
VAR _act2023 =
    CALCULATE (
        SUM ( Table[Actuals 2023] ),
        'Table',
        VALUES ( 'Table'[ReportingDate] )
    )
RETURN
    MAX ( MAX ( _act2021, _act2022 ), _act2023 )

formual2 =
VAR _act2021 =
    CALCULATE (
        SUM ( Table[Actuals 2021] ),
        'Table',
        VALUES ( 'Table'[ReportingDate] )
    )
VAR _act2022 =
    CALCULATE (
        SUM ( Table[Actuals 2022] ),
        'Table',
        VALUES ( 'Table'[ReportingDate] )
    )
VAR _act2023 =
    CALCULATE (
        SUM ( Table[Actuals 2023] ),
        'Table',
        VALUES ( 'Table'[ReportingDate] )
    )
RETURN
    MIN ( MIN ( _act2021, _act2022 ), _act2023 )

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

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.