Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Need Help

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  

 

1 ACCEPTED 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]

3.png

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.

View solution in original post

5 REPLIES 5
sampathK
Microsoft Employee
Microsoft Employee

Hello,

   You can try this below, by going through New table 

 

New Table=SUMMARIZE('Date','Date'[Quarter],"Max",MAX('Date'[Period]))

Anonymous
Not applicable

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

Anonymous
Not applicable

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]

3.png

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.

Anonymous
Not applicable

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

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors