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
SHILL
Frequent Visitor

Percentage Difference

I have the example graph below and I need to get a percentage that shows the difference against our start of year plan. For example, the start of the year plan we forecast a total of 30 sales, the Q1 plan forecasted a total of 37, which is 185% against the start of year plan. Then Q2 we forecast which is 300% against the start of year plan. Is there a measure I can use to get this

Plan Forcasted MonthTotals
Start of year JAN5
Start of year FEB10
Start of year MARCH5
Q1  JAN7
Q1  FEB10
Q1  MARCH20
Q2 JAN10
Q2 FEB20
Q2 MARCH30
1 ACCEPTED SOLUTION
Irwan
Super User
Super User

hello @SHILL 

 

please check if this accomodate your need.

 

Irwan_0-1720659848173.png

 

Create a measure wiht following DAX:

Calculate =
var _Status = SELECTEDVALUE('Table'[Plan Forcasted])
var _StartofYear = CALCULATE(SUM('Table'[Totals]),'Table'[Plan Forcasted]="Start of year")
Var _Q1 = CALCULATE(SUM('Table'[Totals]),'Table'[Plan Forcasted]="Q1")
var _Q2 = CALCULATE(SUM('Table'[Totals]),'Table'[Plan Forcasted]="Q2")
Return
IF(
    _Status="Start of year",
    "",
IF(
    _Status="Q1",
    DIVIDE(_Q1,_StartofYear),
IF(
    _Status="Q2",
    DIVIDE(_Q2,_StartofYear)
)))
Irwan_1-1720659896478.png
 
Hope this will help you.
Thank you.

View solution in original post

1 REPLY 1
Irwan
Super User
Super User

hello @SHILL 

 

please check if this accomodate your need.

 

Irwan_0-1720659848173.png

 

Create a measure wiht following DAX:

Calculate =
var _Status = SELECTEDVALUE('Table'[Plan Forcasted])
var _StartofYear = CALCULATE(SUM('Table'[Totals]),'Table'[Plan Forcasted]="Start of year")
Var _Q1 = CALCULATE(SUM('Table'[Totals]),'Table'[Plan Forcasted]="Q1")
var _Q2 = CALCULATE(SUM('Table'[Totals]),'Table'[Plan Forcasted]="Q2")
Return
IF(
    _Status="Start of year",
    "",
IF(
    _Status="Q1",
    DIVIDE(_Q1,_StartofYear),
IF(
    _Status="Q2",
    DIVIDE(_Q2,_StartofYear)
)))
Irwan_1-1720659896478.png
 
Hope this will help you.
Thank you.

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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.