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
sujaypr3
New Member

Max and min value

Hello,

 

I have created fax to find max and min value as follows:

 

MAXRev = MAXX(ALLSELECTED(Calendar, Calendar [Quarter]),[Revenue])

 

MINREev =MINX(ALLSELECTED(Calendar, Calendar [Quarter]),[Revenue])

 

It is perfectly calculating.  The problem is, if I have selected 2 years and their respective quarters say Q1 to Q4 for FY22 and Q1 to Q4 for FY23, I get max and min value for each year separately.  I want to know which is max and min across 8 quarters that is displayed in visuals

1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

Try adding Calendar[Year] to the measure.

MAXRev = MAXX(ALLSELECTED(Calendar, Calendar[Year], Calendar[Quarter]), [Revenue])

View solution in original post

3 REPLIES 3
AlexisOlson
Super User
Super User

Try adding Calendar[Year] to the measure.

MAXRev = MAXX(ALLSELECTED(Calendar, Calendar[Year], Calendar[Quarter]), [Revenue])

I have already tried this. But the result is same where I get max and min for per fiscal year.

 

note, I have mentioned quarter sorry by Year to get correct grouping in visual 

OK. There may be some other calendar column interfering. Try doing ALLSELECTED on the entire table. I'm not sure exactly what columns you have but try something like this:

MAXRev =
MAXX (
    SUMMARIZE (
        ALLSELECTED ( Calendar ),
        Calendar[Year],
        Calendar[Quarter]
    ),
    [Revenue]
)

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

Find out what's new and trending in the Fabric Community.