March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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
Solved! Go to Solution.
Try adding Calendar[Year] to the measure.
MAXRev = MAXX(ALLSELECTED(Calendar, Calendar[Year], Calendar[Quarter]), [Revenue])
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]
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
85 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |