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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Bhanu_chPBI
Helper I
Helper I

How to calculate with cumulative percentage with particular year.

Hi!

 

I need to calculate the cumulative percentage as 

(curr-first year/firstyear)

 

What I need is to have another column with cumulative percentage with 0%, 100%, 160%, 200%.

 

Any idea how to do it? 

 

Thanks

CH. Bhanu

2 ACCEPTED SOLUTIONS
Anonymous
Not applicable

Hi @Bhanu_chPBI ,

 

Please try these measures.

Curr-First Year = 
CALCULATE(SUM('Table'[Value]),'Calendar'[Date]<MAX('Calendar'[Date]))
First Year = 
CALCULATE(SUM('Table'[Value]),FILTER(ALL('Calendar'),'Calendar'[Year]=MIN('Calendar'[Year])))
Curr-First Year/First Year = 
DIVIDE([Curr-First Year],[First Year])+0

vcgaomsft_0-1656656342195.png

The PBIX file is attached for reference.

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly -- How to provide sample data

View solution in original post

Hi @Anonymous 

 

Thank's for your update!

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@Bhanu_chPBI , for denominator you can have one of the following to get year data

 

example

This year Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD(ENDOFYEAR('Date'[Date]),"12/31"))

 

This Year = CALCULATE(sum('Table'[Qty]),filter(ALL('Date'),'Date'[Year]=max('Date'[Year])))

 


 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

Hi @Bhanu_chPBI ,

 

Please try these measures.

Curr-First Year = 
CALCULATE(SUM('Table'[Value]),'Calendar'[Date]<MAX('Calendar'[Date]))
First Year = 
CALCULATE(SUM('Table'[Value]),FILTER(ALL('Calendar'),'Calendar'[Year]=MIN('Calendar'[Year])))
Curr-First Year/First Year = 
DIVIDE([Curr-First Year],[First Year])+0

vcgaomsft_0-1656656342195.png

The PBIX file is attached for reference.

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly -- How to provide sample data

Hi @Anonymous 

 

Thank's for your update!

Helpful resources

Announcements
November Fabric Update Carousel

Fabric Monthly Update - November 2025

Check out the November 2025 Fabric update to learn about new features.

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!

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.

Users online (27)