This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
Hi Experts,
I have a data and i need to find out what is the max period in the below data.
please help me on this.
Period Quarter
1 Q1
2 Q1
3 Q1
4 Q2
5 Q2
So, if
Q1 the maximum period is = 3
Q2 the maximum period is = 5
likewise i want to find out the maximum period in the each quarter.
How to get this done?
Regards
Swamy
Solved! Go to Solution.
Hi @Anonymous
Create measures
max period = CALCULATE(MAX(Table1[Period]),ALLEXCEPT(Table1,Table1[Quarter])) month plan = MAX([Year plan])/12 Quarter plan = [max period]*[month plan]
Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hello,
You can try this below, by going through New table
New Table=SUMMARIZE('Date','Date'[Quarter],"Max",MAX('Date'[Period]))
Hi @Anonymous ,
I'm not sure how you want to use the maxinum, beucase I think you can put the quarter as dimension in table, and create a measure ( =max(period), then you can get the maxinum period by quarter I think.
Please try.
Aiolos Zhao
Hi,
I want to calculate the QTD plan numbers for each quarter.
If I get the maximum period of the Quarter then i can calculate the plan numbers again each order.
Ex:
Yearly plan is 1000
monthly plan is 1000/12 = 83.33
so if I want to calculate the QTD value for Q1 = 3*83.33 = 250
Hope u can understand the scenario.
Regards
Swamy
Hi @Anonymous
Create measures
max period = CALCULATE(MAX(Table1[Period]),ALLEXCEPT(Table1,Table1[Quarter])) month plan = MAX([Year plan])/12 Quarter plan = [max period]*[month plan]
Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
So I assume that you already have a measure to get the result of monthly plan.
And if you want to create a table, then I think you just need to put the quarter into the table.
then create a measure like : a = max(period)
then create another measure like : b = a * your_monthly_plan
then put b into your table.
Please try.
Aiolos Zhao
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 36 | |
| 32 | |
| 31 | |
| 21 | |
| 15 |
| User | Count |
|---|---|
| 68 | |
| 57 | |
| 31 | |
| 29 | |
| 22 |